-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.93 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
{
"name": "financial_company",
"version": "0.1.0",
"private": true,
"main": "app.js",
"dependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/pickers": "^3.2.10",
"@material-ui/styles": "^4.10.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"celebrate": "^13.0.3",
"concurrently": "^5.3.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"date-fns": "^2.16.1",
"docxtemplater": "^3.19.6",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"express-winston": "^4.0.5",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.9",
"mongoose-auto-increment": "^5.0.1",
"mongoose-sequence": "^5.3.0",
"pizzip": "^3.0.6",
"prettier": "^2.1.2",
"prop-types": "^15.7.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-scripts": "3.4.4",
"validator": "^13.1.17"
},
"devDependencies": {
"cross-env": "^7.0.2",
"nodemon": "^2.0.6",
"winston": "^3.3.3"
},
"scripts": {
"start": "cross-env NODE_ENV=production node app.js",
"server": "nodemon app.js",
"front": "npm run start --prefix front webpack serve",
"front:install": "npm install --prefix front",
"front:build": "npm run build --prefix front",
"dev": "cross-env NODE_ENV=development concurrently \"npm run server\" \"npm run front\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}