-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "wobbly-app",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:update": "yarn test --updateSnapshot",
"test:coverage": "yarn test --coverage",
"storybook": "start-storybook -p 9009 -s public",
"storybook:build": "build-storybook -s public",
"eject": "react-scripts eject",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"lodash": "^4.17.10",
"normalize.css": "^8.0.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-icons-kit": "^1.1.4",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"styled-components": "^3.2.6",
"webfontloader": "^1.6.28",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.2",
"@storybook/addon-links": "^3.4.2",
"@storybook/addons": "^3.4.2",
"@storybook/react": "^3.4.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"husky": "^0.14.3",
"jest-enzyme": "^6.0.0",
"lint-staged": "^7.0.4",
"prettier": "^1.12.1",
"react-test-renderer": "^16.3.2",
"redux-devtools-extension": "^2.13.2",
"storybook-react-router": "^1.0.1"
}
}