-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.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
{
"name": "chat-client",
"version": "0.1.0",
"private": true,
"devDependencies": {
"enzyme": "^3.2.0",
"flow-bin": "^0.59.0",
"flow-coverage-report": "^0.4.0",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"jsdom": "^11.3.0",
"lint-staged": "^5.0.0",
"prettier": "^1.8.2",
"react-scripts": "^1.0.17",
"react-test-renderer": "^16.1.1",
"sw-precache": "^5.2.0"
},
"dependencies": {
"enzyme-adapter-react-16": "^1.1.0",
"lodash": "^4.16.6",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-emojione": "^5.0.0",
"react-flip-move": "^2.9.17",
"react-mark-ii": "^2.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"reconnecting-websocket": "^3.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.1.0"
},
"scripts": {
"start": "react-scripts start",
"prebuild": "CI=true flow check && yarn test",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy": "yarn build && gh-pages -d build",
"precommit": "lint-staged",
"flow": "flow",
"flow-coverage": "flow-coverage-report -i 'src/**/*.js' -t html -t text"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false,
"printWidth": 120,
"parser": "flow"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
}
}