-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.99 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
{
"name": "web",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ridi/object-case-converter": "2.0.4",
"@types/jest": "23.3.10",
"@types/lodash": "4.14.119",
"@types/node": "10.12.18",
"@types/prop-types": "15.5.8",
"@types/query-string": "6.2.0",
"@types/react": "16.7.18",
"@types/react-dates": "17.1.5",
"@types/react-dom": "16.0.11",
"@types/react-helmet": "5.0.8",
"@types/react-outside-click-handler": "1.2.0",
"@types/react-router-dom": "4.3.1",
"@types/react-select": "2.0.11",
"@types/styled-components": "4.1.4",
"add": "2.0.6",
"axios": "0.18.0",
"lodash": "4.17.11",
"mobx": "5.8.0",
"mobx-react": "5.4.3",
"mobx-react-devtools": "6.1.1",
"moment": "2.23.0",
"prop-types": "^15.6.2",
"query-string": "6.2.0",
"react": "16.7.0",
"react-dates": "18.3.1",
"react-dom": "16.7.0",
"react-helmet": "5.2.0",
"react-outside-click-handler": "1.2.2",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"react-scripts": "2.1.5",
"react-select": "2.2.0",
"styled-components": "4.1.3",
"typescript": "3.2.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "tslint -c tslint.json --project tsconfig.json",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"husky": "1.3.1",
"lint-staged": "8.1.3",
"prettier": "1.16.3",
"react-docgen-typescript": "1.12.2",
"react-styleguidist": "8.0.6",
"tslint": "5.12.1",
"tslint-config-prettier": "1.17.0",
"tslint-react": "3.6.0",
"typescript-styled-plugin": "0.13.0",
"yarn": "1.12.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"tslint -c tslint.json --fix",
"git add"
]
}
}