-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "fakeshop-backend",
"version": "1.0.0",
"description": "",
"engines": {
"node": "14.15.4"
},
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node build/server.js",
"run": "node build/server.js",
"dev": "nodemon src/server.ts",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc src/server.ts --outDir build",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^14.14.37",
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0-rc.6",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"csv": "^5.5.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"mongodb": "^3.6.6",
"monk": "^7.3.4",
"newrelic": "^7.3.1",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"socket.io": "^4.0.1",
"ts-node": "^9.1.1",
"tsc": "^1.20150623.0",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.11.2",
"gts": "^3.1.0",
"typescript": "^4.0.3"
}
}