-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
{
"name": "issd-customizer",
"version": "0.0.0",
"description": "ISSD (International Superstar Soccer Deluxe) SNES ROM Customizer",
"author": "Marino Alcaide",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=production ts-node --transpile-only src/server.ts",
"dev": "cross-env NODE_ENV=development nodemon --watch src --delay 1 --exec 'ts-node' src/server.ts",
"test": "jest --forceExit --detectOpenHandles",
"lint": "tslint -p tsconfig.json -c tslint.json",
"demo_read": "node demo/demo_read.js",
"demo_edit": "node demo/demo_edit.js"
},
"dependencies": {
"bcrypt": "^4.0.1",
"class-transformer": "^0.2.3",
"class-validator": "^0.12.2",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"envalid": "^6.0.2",
"express": "^4.17.1",
"helmet": "^3.22.0",
"hpp": "^0.2.3",
"jest": "^26.0.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/helmet": "0.0.47",
"@types/hpp": "^0.2.1",
"@types/jest": "^25.2.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.0",
"@types/node": "^14.0.9",
"@types/supertest": "^2.0.9",
"nodemon": "^2.0.4",
"supertest": "^4.0.2",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2"
}
}