-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "commonplace-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"prop-types": "^15.5.10",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-feather": "1.0.8",
"react-redux": "^5.0.5",
"react-router-dom": "4.2.2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"styled-components": "2.2.2"
},
"devDependencies": {
"@storybook/react": "3.2.16",
"babel-eslint": "^8.0.1",
"eslint": "^4.8.0",
"eslint-plugin-flowtype": "2.39.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "0.57.3",
"prettier": "^1.7.2",
"react-scripts": "1.0.17",
"react-test-renderer": "16.2.0"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"build": "react-scripts build",
"eject": "react-scripts eject",
"eslint": "eslint --config src/.eslintrc.json src",
"flow": "flow check",
"prettier": "prettier --write src/**/*.js",
"start": "react-scripts start",
"storybook": "start-storybook -p 9001",
"test": "react-scripts test --env=jsdom"
}
}