-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "coinface",
"version": "0.1.0",
"private": true,
"dependencies": {
"copyfiles": "^2.0.0",
"enzyme-adapter-react-16": "^1.1.1",
"flux-standard-action": "^2.0.1",
"human-time": "0.0.1",
"md5": "^2.2.1",
"moment": "^2.21.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-scripts": "^1.1.1",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"superstruct": "^0.5.1",
"yaab": "^0.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "npm run test-ci && npm run lint",
"test-ci": "cross-env CI=true react-scripts test",
"test-watch": "react-scripts test",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint --ignore-path .gitignore .",
"stylelint": "stylelint src/**/*.css",
"format": "npm run eslint -- --fix",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 3000 -c .storybook",
"postinstall": "copyfiles -f node_modules/superstruct/lib/index.js src/lib/superstruct"
},
"devDependencies": {
"@storybook/addon-info": "^3.3.15",
"@storybook/react": "^3.3.15",
"cross-env": "^5.1.4",
"enzyme": "^3.3.0",
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"jest-junit": "^3.6.0",
"prettier": "^1.11.1",
"react-test-renderer": "^16.2.0",
"redux-devtools": "^3.4.1",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0",
"stylelint": "^9.1.1",
"stylelint-config-recommended": "^2.1.0"
},
"eslintIgnore": [
"src/lib/superstruct/index.js"
]
}