-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
73 lines (73 loc) · 2.13 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
{
"private": true,
"scripts": {
"build": "npm run update-schema && npm run relay-compiler && npm run webpack",
"lint": "eslint *.js src tools",
"relay-compiler": "relay-compiler --watchman false --src src --exclude 'data/**' --schema src/data/schema.graphql",
"start": "npm run relay-compiler && webpack-dev-server --mode development --hot",
"update-schema": "cross-env NODE_ENV=test babel-node tools/updateSchema.js",
"webpack": "webpack --mode production"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"npm run update-schema",
"git add src/data/schema.*"
]
},
"prettier": {
"printWidth": 79,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@4c/babel-preset": "^7.4.1",
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/node": "^7.12.13",
"@babel/runtime": "^7.12.13",
"babel-loader": "^8.2.2",
"babel-plugin-relay": "^10.1.3",
"classnames": "^2.2.6",
"copy-webpack-plugin": "^6.4.1",
"core-js": "^3.8.3",
"cross-env": "^7.0.3",
"css-loader": "^4.3.0",
"eslint": "^7.19.0",
"eslint-config-4catalyzer-react": "^1.0.13",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"farce": "^0.4.5",
"found": "^0.5.10",
"found-relay": "^0.8.3",
"graphql": "^15.5.0",
"graphql-relay": "^0.6.0",
"html-webpack-plugin": "^4.5.1",
"husky": "^4.3.8",
"keycode": "^2.2.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-relay": "^10.1.3",
"relay-compiler": "^10.1.3",
"relay-local-schema": "^0.8.0",
"relay-runtime": "^10.1.3",
"style-loader": "^1.3.0",
"todomvc-app-css": "^2.3.0",
"todomvc-common": "^1.0.5",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}