-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 KB
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
{
"name": "streamin",
"version": "0.0.0",
"private": true,
"dependencies": {
"eslint-plugin-jsx": "^0.0.2",
"eslint-plugin-react": "^7.1.0",
"react": "^15.5.4",
"react-animations": "^0.1.0",
"react-dom": "^15.5.4",
"react-icons": "^2.2.5",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"redux-loop-symbol-ponyfill": "^2.2.2",
"styled-components": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"chai": "^4.0.1",
"enzyme": "^2.8.2",
"flow": "^0.2.3",
"flow-bin": "^0.47.0",
"husky": "^0.13.4",
"lint-staged": "^3.6.0",
"prettier": "^1.4.1",
"react-addons-test-utils": "^15.5.1",
"react-scripts": "1.0.6",
"redux-logger": "^3.0.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}