-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.11 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
{
"name": "user-server",
"version": "1.0.0",
"private": true,
"main": "app.js",
"scripts": {
"serve": "SET NODE_ENV=serve&& ts-node-dev --project tsconfig.server.json src/index.ts",
"development": "SET NODE_ENV=development&& tsc --project tsconfig.server.json && node dist/index.js",
"staging": "SET NODE_ENV=staging&& tsc --project tsconfig.server.json && node dist/index.js",
"prod": "SET NODE_ENV=production&& tsc --project tsconfig.server.json && node dist/index.js",
"pm2:staging": "NODE_ENV=staging&& tsc --project tsconfig.server.json && pm2 start dist/index.js --watch --name user-server",
"pm2": "NODE_ENV=production&& tsc --project tsconfig.server.json && pm2 start dist/index.js --watch --name user-server",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.ts --ignore-path .gitignore ."
},
"dependencies": {
"body-parse": "^0.1.0",
"config": "^3.3.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"enum": "^3.0.3",
"express": "^4.17.1",
"express-validator": "^6.4.0",
"glob": "^7.1.6",
"iconv-lite": "^0.6.2",
"knex": "^0.95.4",
"lodash": "^4.17.15",
"log4js": "6.2.0",
"mime": "^2.4.6",
"mysql": "^2.18.1",
"node-cmd": "^3.0.0",
"path": "^0.12.7",
"router": "^1.3.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "7.4.3",
"@babel/core": "7.4.3",
"@babel/node": "7.2.2",
"@babel/preset-env": "7.4.3",
"@babel/runtime": "^7.4.3",
"@types/express": "^4.17.12",
"@types/express-session": "^1.17.3",
"@types/node": "^15.12.1",
"@types/randomstring": "^1.1.8",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^4.1.0",
"lodash.random": "^3.2.0",
"lodash.times": "^4.3.2",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.2.4"
}
}