-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "toskaboiler",
"version": "1.0.0",
"description": "Boilerplate for toska projects",
"main": "index.js",
"scripts": {
"start": "docker-compose up",
"bash": "docker-compose run app bash",
"reset": "docker-compose down -v && docker-compose up --build",
"build": "react-scripts build",
"start:front": "react-scripts start",
"start:prod": "NODE_ENV=production node ./src/server/index.js",
"start:dev": "NODE_ENV=development concurrently \"node-dev ./src/server/index.js\" \"CHOKIDAR_USEPOLLING=true react-scripts start\"",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint 'src/**/*.js'",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=16.0"
},
"author": "Jami Kousa",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.5",
"@mui/lab": "^5.0.0-alpha.53",
"@mui/material": "^5.0.6",
"@reduxjs/toolkit": "^1.6.2",
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"notistack": "^2.0.3",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.30.0",
"react-redux": "^7.2.6",
"react-router": "^6.0.0",
"react-router-dom": "^6.0.0",
"react-scripts": "^4.0.3",
"store2": "^2.12.0",
"unfuck-spa-shibboleth-session": "^3.1.3",
"unfuck-utf8-headers-middleware": "^1.0.1",
"winston": "^3.3.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "^6.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"node-dev": "^7.1.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:8000"
}