-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.91 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "fancy-post",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "jest src/** exit 0",
"lint": "./node_modules/.bin/eslint ./",
"lint:fix": "./node_modules/.bin/eslint ./ --fix --quiet",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"precommit": "npm run lint",
"prepush": "npm run test:coverage"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@material-ui/core": "3.1.0",
"@material-ui/icons": "3.0.1",
"antd": "3.10.4",
"is-value-type": "0.0.2",
"prop-types": "15.6.2",
"ramda": "0.26.1",
"react": "^16.6.0",
"react-app-rewire-scss": "1.0.2",
"react-app-rewired": "1.6.2",
"react-copy-to-clipboard": "^5.0.1",
"react-debounce-input": "3.2.0",
"react-dom": "16.6.0",
"react-redux": "5.0.6",
"react-scripts": "2.1.1",
"react-test-renderer": "16.6.1",
"redux": "3.7.2",
"redux-devtools-extension": "2.13.5",
"redux-thunk": "2.3.0",
"styled-components": "4.0.3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "9.0.0",
"babel-jest": "23.6.0",
"babel-plugin-import": "1.11.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"enzyme": "3.6.0",
"enzyme-adapter-react-16": "1.5.0",
"enzyme-to-json": "3.3.4",
"eslint": "5.6.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.1",
"husky": "1.2.0",
"jest": "23.6.0",
"jest-styled-components": "6.2.0",
"redux-mock-store": "1.5.3"
},
"jest": {
"setupFiles": [
"<rootDir>/config/test.setup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}