-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 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
{
"name": "atcolor-web",
"version": "0.1.0",
"private": true,
"homepage": "http://atcolor.cps.im.dendai.ac.jp",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy":
"rsync -rtvpl --exclude-from=.rsyncignore ./build cps_hiro:~/atcolor-web",
"flow": "flow",
"precommit": "lint-staged"
},
"dependencies": {
"camelcase-keys-recursive": "^0.8.2",
"material-ui": "^0.19.4",
"normalizr": "^3.2.4",
"query-string": "^5.0.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.17",
"redux": "^3.7.2",
"redux-persist": "^5.2.2",
"redux-thunk": "^2.2.0",
"styled-components": "^2.2.3",
"superagent": "^3.8.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-plugin-s2s-variable-initializing": "^0.1.4",
"enzyme": "^3.1.1",
"enzyme-adapter-react-16": "^1.0.4",
"enzyme-to-json": "^3.2.1",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.57.3",
"gh-pages": "^1.0.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^4.3.0",
"prettier": "^1.7.4",
"react-test-renderer": "^16.0.0",
"s2s": "^0.11.0",
"s2s-plugins-redux": "^0.3.2"
},
"lint-staged": {
"src/**/*.js": ["prettier --config ./.prettierrc --write", "git add"]
}
}