-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.6 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
{
"name": "node",
"version": "1.0.0",
"main": "app.ts",
"author": "You-sung Jung",
"license": "MIT",
"devDependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@types/supertest": "^2.0.11",
"express": "^4.17.2",
"jest": "^27.4.7",
"nodemon": "^2.0.15",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"scripts": {
"start": "node dist/app.js",
"build": "tsc",
"test": "tsc --noEmit && jest",
"pull-request": "run-script-os",
"pull-request:darwin:linux": "export NODE_ENV=development && node dist/src/app.js",
"pull-request:win32": "SET NODE_ENV=development && node dist/src/app.js",
"main": "run-script-os",
"main:darwin:linux": "export NODE_ENV=development && nodemon --watch \"src/**/*.ts\" --exec \"ts-node\" src/app.ts main",
"main:win32": "SET NODE_ENV=development && nodemon --watch \"src/**/*.ts\" --exec \"ts-node\" src/app.ts main",
"dev": "run-script-os",
"dev:darwin:linux": "export NODE_ENV=development && nodemon --watch \"src/**/*.ts\" --exec \"ts-node\" src/app.ts dev",
"dev:win32": "SET NODE_ENV=development && nodemon --watch \"src/**/*.ts\" --exec \"ts-node\" src/app.ts dev"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/gravatar": "^1.8.3",
"@types/jsonwebtoken": "^8.5.8",
"express-validator": "^6.14.0",
"figlet": "^1.5.2",
"helmet": "^5.0.1",
"promise-mysql2": "^1.0.0",
"run-script-os": "^1.1.6"
}
}