-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.03 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
{
"name": "econcircles",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "run-p start:**",
"start:css": "npm run build:css && node-sass-chokidar --include-path ./src/styles --include-path ./node_modules src/ -o src/static/ --watch --recursive",
"start:js": "react-scripts start",
"build": "run-p build:**",
"build:css": "node-sass-chokidar --include-path ./src/styles --include-path ./node_modules src/ -o ./src/static/",
"build:js": "react-scripts build",
"build:schema": "node -r esm ./src/fetchSchema.js",
"test": "react-scripts test --env=jsdom"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.1",
"@types/react": "16.9.11",
"apollo-cache-inmemory": "^1.6.3",
"apollo-cache-persist": "^0.1.1",
"apollo-client": "^2.5.3",
"apollo-link": "^1.2.5",
"apollo-link-http": "^1.5.14",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"graphql-type-json": "^0.3.0",
"localforage": "^1.7.3",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-apollo": "^3.1.1",
"react-dom": "^16.9.0",
"react-md": "^1.12.3",
"react-scripts": "^3.2.0",
"react-svg-pan-zoom": "^3.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-imports": "^1.5.1",
"eslint": "^6.4.0",
"eslint-config-react-app": "^5.0.2",
"eslint-loader": "^2.1.1",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "20.0.3",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.16.0",
"esm": "^3.2.25",
"fs": "0.0.1-security",
"node-fetch": "^2.6.0",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.5",
"typescript": "^3.6.3"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}