-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.32 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.32 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
85
86
87
88
89
90
91
{
"name": "theledger-react-starter-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze": "source-map-explorer build/static/js/main.*",
"start": "craco start",
"build": "craco build",
"test": "craco test --silent",
"eject": "react-scripts eject",
"lint": "tslint 'src/**/*.{ts,tsx}'",
"generate-swagger": "node scripts/codegen.js http://localhost:5000/api-json"
},
"dependencies": {
"@craco/craco": "^5.5.0",
"antd": "^3.24.1",
"axios": "^0.19.0",
"core-decorators": "^0.20.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"query-string": "^6.8.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-intl": "^2.9.0",
"react-redux": "^7.1.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"styled-components": "^4.4.0",
"typescript-fsa": "^3.0.0",
"typescript-fsa-reducers": "^1.2.1"
},
"devDependencies": {
"@types/jest": "24.0.13",
"@types/jsonwebtoken": "^8.3.2",
"@types/lodash": "^4.14.135",
"@types/node": "^12.0.10",
"@types/react-dom": "^16.9.2",
"@types/react-intl": "^2.3.18",
"@types/react-redux": "^7.1.1",
"@types/react-router": "^5.0.3",
"@types/react-router-dom": "^4.3.4",
"@types/react-test-renderer": "^16.9.1",
"@types/redux-mock-store": "^1.0.1",
"@types/styled-components": "^4.1.16",
"babel-plugin-import": "^1.12.0",
"babel-plugin-lodash": "^3.3.4",
"husky": "^2.7.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"lint-staged": "^8.2.1",
"lodash-webpack-plugin": "^0.11.5",
"prettier": "^1.18.2",
"react-scripts": "^3.3.0",
"react-test-renderer": "^16.10.2",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.3",
"source-map-explorer": "^1.8.0",
"swagger-taxos-codegen": "^2.1.2",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-react": "^4.0.0",
"typescript": "3.5.1",
"typescript-tslint-plugin": "^0.5.4"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,json,css}": [
"prettier --write",
"git add"
]
}
}