-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.29 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.29 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
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
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "kiki",
"version": "0.1.0",
"dependencies": {
"@elastic/datemath": "^5.0.2",
"@elastic/eui": "^9.5",
"@types/yup": "^0.26.9",
"autobind-decorator": "^2.4.0",
"axios": "^0.18.1",
"connected-react-router": "^6.1.0",
"decko": "^1.2.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"formik": "^1.5.1",
"history": "^4.7.2",
"js-cookie": "^2.2.0",
"moment": "^2.24.0",
"prop-types": "^15.5.0",
"react": "^16.8",
"react-dom": "^16.8",
"react-helmet": "^5.2.0",
"react-redux": "^6.0.0",
"react-router": "^5",
"react-router-dom": "^5",
"react-scripts": "2.1.2",
"redux": "^4.0.1",
"redux-observable": "^1.0.0",
"reset-css": "^4.0.1",
"rxjs": "^6.3.3",
"yup": "^0.26.10",
"snyk": "^1.189.0"
},
"devDependencies": {
"@types/enzyme": "^3.1.15",
"@types/jest": "^23.3.11",
"@types/js-cookie": "^2.2.2",
"@types/node": "^10.12.18",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.2",
"@types/react-helmet": "^5.0.8",
"@types/react-redux": "^6.0.9",
"@types/react-router-dom": "^4.3.1",
"@types/redux-actions": "^2.3.2",
"@types/redux-mock-store": "^1.0.0",
"husky": "^1.3.1",
"node-sass": "^4.11.0",
"redux-mock-store": "^1.5.3",
"stylelint": "^9.4.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^2.0.0",
"stylelint-scss": "^3.4.4",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0",
"typescript": "^3.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --coverage --env=jsdom --watchAll=false",
"eject": "react-scripts eject",
"stylelint": "stylelint src/scss/**/*.scss --syntax scss --fix",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-push": "yarn test && yarn lint && yarn stylelint"
}
},
"proxy": "http://localhost:8000",
"snyk": true
}