-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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
{
"name": "api-node-pc3",
"version": "1.0.0",
"description": "api node Softlusion",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"preserve": "npm run build",
"serve": "cross-env NODE_ENV=development concurrently \"tsc --watch\" \"nodemon -q dist/index.js\"",
"prestart": "npm run build",
"start": "cross-env NODE_ENV=production node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.5.0",
"jsonwebtoken": "^8.5.1",
"mariadb": "^2.5.3",
"morgan": "^1.10.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/hapi__joi": "^17.1.6",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.163",
"@types/mongoose": "^5.7.36",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.41",
"@types/supertest": "^2.0.10",
"concurrently": "^6.0.2",
"nodemon": "^2.0.7",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
}
}