-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.16 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "mpc_backend",
"version": "1.0.0",
"description": "MPC backend server",
"main": "app.js",
"scripts": {
"start": "nodemon",
"dev:start": "npm-run-all build dev:serve",
"dev:serve": "env-cmd -e local node ./dist/app.js",
"prod:build": "npm-run-all build",
"prod:serve": "env-cmd -e production node ./dist/app.js",
"build": "npm-run-all clean transpile",
"clean": "rimraf dist",
"transpile": "babel ./server --out-dir dist"
},
"repository": {
"type": "git",
"url": ""
},
"author": "author",
"license": "ISC",
"bugs": {
"url": "https://[email protected]/dbk16/ipg_backend.git"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/transform-runtime"
]
},
"nodemonConfig": {
"exec": "yarn dev:start",
"watch": [
"server/*",
"public/*"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
},
"homepage": "",
"dependencies": {
"@babel/runtime": "^7.12.5",
"@types/sequelize": "^4.28.11",
"axios": "^1.3.2",
"barcode": "^0.1.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.2",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"env-cmd": "^10.1.0",
"express": "^4.17.3",
"express-fileupload": "^1.2.0",
"express-validator": "^6.6.1",
"jsbarcode": "^3.11.5",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.31",
"multer": "^1.4.4",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"node-cron": "^3.0.0",
"node-notifier": "^10.0.0",
"nodemailer": "^6.9.1",
"npm": "^6.14.15",
"object.omit": "^3.0.0",
"path": "^0.12.7",
"pdfkit": "^0.13.0",
"sequelize": "^5.22.5",
"tinyurl": "^1.1.7",
"twilio": "^4.7.2",
"uniqid": "^5.4.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
}
}