-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·68 lines (68 loc) · 1.7 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
67
68
{
"name": "react-lagoon",
"version": "0.12.4",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:dev": "env-cmd -f .env.dev npm run build",
"build:gitlab": "env-cmd -f .env.gitlab npm run build",
"test": "react-scripts test",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@date-io/dayjs": "^1.3.8",
"@material-ui/core": "^4.0.1",
"@material-ui/icons": "^4.0.1",
"@material-ui/pickers": "^3.2.1",
"@material-ui/styles": "^4.0.1",
"axios": "^0.19.0",
"dayjs": "^1.8.14",
"lodash": "^4.17.15",
"mui-datatables": "^2.11.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-dropzone": "^10.1.8",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"react-scripts": "3.1.2",
"react-toastify": "^5.4.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"styled-components": "^4.4.0"
},
"devDependencies": {
"env-cmd": "^10.0.1",
"husky": "^3.0.7",
"lint-staged": "^9.4.1",
"node-sass": "^4.12.0",
"prettier": "^1.17.1",
"redux-devtools-extension": "^2.13.8",
"source-map-explorer": "^2.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"homepage": "https://80.211.114.153:8443/lagoon"
}