-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.32 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
{
"name": "node_coder_backend",
"version": "1.0.0",
"description": "Backend for coder web application",
"main": "dist/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node dist/server.js",
"dev": "tsc -w & nodemon"
},
"nodemonConfig": {
"delay": "2000",
"restartable": "rs",
"ext": "js",
"watch": [
"dist"
],
"ignore": [
"src",
".git",
"node_modules"
],
"exec": "node dist/server.js"
},
"author": "zoraaver",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.35",
"@types/pg": "^7.14.11",
"@types/sequelize": "^4.28.9",
"@types/validator": "^13.1.3",
"morgan": "^1.10.0",
"nodemon": "^2.0.7",
"typescript": "^4.2.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"chai": "^4.3.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.3.2",
"mocha-jsdom": "^2.0.0",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.5.1",
"validator": "^10.11.0"
}
}