-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
74 lines (74 loc) · 2.44 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
{
"name": "express-simple-boilerplate",
"version": "1.0.0",
"description": "Simple boilerplate for Express JS Node JS project.",
"main": "index.js",
"engines": {
"node": "14.15.1"
},
"scripts": {
"build-babel": "babel --delete-dir-on-start --out-dir dist --copy-files --ignore \"**/__tests__/**,**/__mocks__/**\" --no-copy-ignored src",
"start-babel": "npm run build-babel && nodemon ./dist/index.js",
"removedist": "rm -rf ./dist",
"removebundle": "rm -rf ./bundle",
"removelog": "rm -rf ./winston-logs/logs/",
"build-prod": "npm run removelog && webpack --config webpack.prod.js",
"debug-prod": "cd ./bundle/server-v100 && npm install && nodemon server.bundle.js",
"live-debug": "nodemon dev.js"
},
"author": "GulajavaMinistudio",
"license": "MIT",
"dependencies": {
"@babel/register": "^7.12.10",
"@babel/runtime": "^7.12.5",
"app-root-path": "^3.0.0",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"date-fns": "^2.16.1",
"date-fns-tz": "^1.0.12",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^5.2.3",
"express-slow-down": "^1.3.1",
"express-validator": "^6.8.0",
"faker": "^5.1.0",
"helmet": "^4.2.0",
"http-proxy-middleware": "^1.0.6",
"loglevel": "^1.7.1",
"mongoose": "^5.11.6",
"morgan": "^1.10.0",
"nodemon": "^2.0.6",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-async-to-generator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"prettier": "^2.2.1",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.4.1",
"webpack-node-externals": "^2.5.2",
"worker-loader": "^3.0.6"
}
}