-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"server": "nodemon --exec babel-node ./src/index.js",
"clean": "rm -rf build && mkdir build",
"build-server": "babel -d ./build ./src -s",
"prod-build": "yarn run clean && yarn run build-server"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
},
"dependencies": {
"aws-sdk": "^2.996.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"convert-excel-to-json": "^1.7.0",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^6.0.1",
"redis": "^4.0.3",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"yup": "^0.32.9"
}
}