This repository has been archived by the owner on Oct 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "treecreeper",
"private": true,
"version": "0.0.0",
"description": "A set of tools for building admin interfaces on top of graph data",
"main": "index.js",
"dependencies": {
"@financial-times/lambda-logger": "^2.0.4",
"@financial-times/tc-api-db-manager": "file:./packages/tc-api-db-manager",
"@financial-times/tc-api-rest-handlers": "file:./packages/tc-api-rest-handlers",
"@financial-times/tc-schema-publisher": "file:./packages/tc-schema-publisher",
"@financial-times/tc-schema-sdk": "file:packages/tc-schema-sdk",
"@financial-times/tc-ui": "file:packages/tc-ui",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"graphql": "^14.0.0",
"graphql-playground-middleware-express": "^1.7.14",
"http-errors": "^1.7.3",
"lodash": "^4.17.18",
"module-alias": "^2.2.2",
"neo4j-driver": "^4.1.2",
"node-fetch": "^2.6.0",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-transform-react-jsx": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/register": "^7.7.0",
"@financial-times/athloi": "^1.0.0-beta.29",
"@financial-times/rel-engage": "^8.0.4",
"@financial-times/tc-api-graphql": "file:./packages/tc-api-graphql",
"aws-sdk": "^2.611.0",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^3.2.0",
"concurrently": "^5.0.0",
"css-loader": "^3.2.1",
"cypress": "^3.8.2",
"fetch-mock": "^9.9.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^26.6.3",
"jest-junit": "^7.0.0",
"lolex": "^4.2.0",
"mini-css-extract-plugin": "^0.8.0",
"nodemon": "^1.19.1",
"start-server-and-test": "^1.10.6",
"stylelint": "^12.0.0",
"stylelint-config-recommended-scss": "^4.1.0",
"stylelint-scss": "^3.13.0",
"supertest": "^4.0.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-encoding-plugin": "^0.3.1",
"webpack-manifest-plugin": "^2.2.0"
},
"scripts": {
"test": "snyk test && make test",
"postinstall": "athloi exec npm i -- --no-package-lock"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Financial-Times/treecreeper.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Financial-Times/treecreeper/issues"
},
"homepage": "https://github.com/Financial-Times/treecreeper#readme",
"workspaces": [
"packages/*"
],
"nodemonConfig": {
"ext": "js,graphql,yaml,jsx",
"ignore": [
"*.cyp.js",
"**/__tests__/*.js",
"test-helpers",
"cypress"
]
},
"engines": {
"node": "14.x"
}
}