-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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": "node_eng",
"version": "1.0.0",
"description": "Exploring node",
"main": "app.js",
"dependencies": {
"@types/express": "^4.17.8",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.11.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.9",
"morgan": "^1.10.0",
"nodemailer": "^6.4.13",
"slugify": "^1.4.5",
"typescript": "^4.0.3",
"validator": "^13.1.17"
},
"devDependencies": {
"ndb": "^1.1.5",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0-pre.63"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "tsnd --respawn server.ts",
"start:pro": "set NODE_ENV=production tsnd --respawn server.ts",
"debug": "ndb server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alexey6486/node_eng_server.git"
},
"author": "Me",
"license": "ISC",
"bugs": {
"url": "https://github.com/Alexey6486/node_eng_server/issues"
},
"homepage": "https://github.com/Alexey6486/node_eng_server#readme"
}