-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.43 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
{
"name": "tsnode",
"version": "1.0.0",
"description": "",
"main": "./src/app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && pm2 start ./pm2.json",
"stop": "sudo pm2 delete app",
"db": "sudo pm2 start mongod --dbpath ./db",
"dev": "cross-env nodemon ./src/app.ts",
"build": "webpack --config webpack.config.js",
"buildtsc": "nodemon tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.6",
"@types/crypto-js": "^3.1.43",
"@types/dotenv": "^8.2.0",
"@types/mongoose": "^5.7.1",
"@types/morgan": "^1.7.37",
"@types/shortid": "0.0.29",
"bcrypt-nodejs": "0.0.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^6.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fs": "0.0.1-security",
"helmet": "^3.21.2",
"http": "^0.0.0",
"jsonwebtoken": "^8.5.1",
"lowdb": "^1.0.0",
"mongodb": "^3.5.3",
"mongoose": "^5.8.11",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"nodemailer": "^6.4.2",
"path": "^0.12.7",
"pm2": "^4.2.3",
"shortid": "^2.2.15",
"ts-lint": "^4.5.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/node": "^12.12.27",
"nodemon": "^2.0.2",
"typescript": "^3.7.5"
}
}