-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.89 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.89 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
{
"name": "jmp-react",
"version": "0.2.5",
"private": true,
"homepage": ".",
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/lab": "^4.0.0-alpha.56",
"@mdi/js": "^5.5.55",
"@mdi/react": "^1.4.0",
"@tafalk/material-color-generator": "^1.0.5",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^5.0.16",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/redux-api-middleware": "^3.2.2",
"jmp-coreui": "^0.1.9",
"material-ui-chip-input": "^2.0.0-beta.2",
"moment": "^2.27.0",
"notistack": "^0.9.17",
"react": "^16.13.1",
"react-center": "^1.1.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-image": "^2.4.0",
"react-moment": "^0.9.7",
"react-palette": "^1.0.2",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"redux": "^4.0.5",
"redux-api-middleware": "^3.2.1",
"redux-persist": "^6.0.0",
"typeface-roboto": "0.0.75",
"typescript": "^3.9.7"
},
"scripts": {
"start": "./env.sh && mv ./env-config.js ./public/ && react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"pretest": "./node_modules/.bin/eslint --ignore-path .gitignore . --fix --ext .ts,.tsx"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
".ts,.tsx": [
"npm run pretest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.2.5",
"jest-config": "^26.5.3",
"lint-staged": "^10.3.0",
"ts-jest": "^26.4.1"
}
}