-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.24 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
{
"name": "ferret-server-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"generate": "rimraf src/models/api && openapi-generator generate -Dmodels --skip-validate-spec -i api/api.oas2.json -g typescript-inversify -o src/models/api && tslint --fix --project ./tsconfig.json -c tslint.json src/models/api/**/*.ts",
"build": "npm run generate && react-scripts build",
"test": "react-scripts test",
"fmt": "pretty-quick"
},
"dependencies": {
"antd": "^3.19.1",
"apollo-cache-inmemory": "^1.6.0",
"apollo-client": "^2.6.0",
"apollo-link": "^1.2.11",
"apollo-link-context": "^1.0.17",
"apollo-link-rest": "^0.7.3",
"classnames": "^2.2.6",
"date-fns": "^1.30.1",
"graphql": "^14.3.0",
"graphql-anywhere": "^4.2.1",
"graphql-tag": "^2.10.1",
"history": "^4.9.0",
"lodash": "^4.17.13",
"qs": "^6.7.0",
"react": "^16.8.6",
"react-apollo": "^2.5.6",
"react-dom": "^16.8.6",
"react-router": "^5.0.0",
"react-router-breadcrumbs-hoc": "^3.2.0",
"react-router-dom": "^5.0.0",
"react-transition-group": "^4.0.1"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^0.0.8-4.0.0-beta2",
"@types/classnames": "^2.2.7",
"@types/graphql": "^14.2.0",
"@types/jest": "24.0.13",
"@types/lodash": "^4.14.123",
"@types/node": "12.0.2",
"@types/qs": "^6.5.3",
"@types/react": "16.8.18",
"@types/react-dom": "16.8.4",
"@types/react-router": "^5.0.1",
"@types/react-router-dom": "^4.3.3",
"@types/react-transition-group": "^2.9.1",
"http-proxy-middleware": "^0.19.1",
"husky": "^2.3.0",
"node-sass": "^4.12.0",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.0",
"react-scripts": "2.1.8",
"rimraf": "^2.6.3",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.4.5"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}