This repository has been archived by the owner on Dec 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.73 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
58
59
60
61
62
63
64
65
{
"name": "express-boilerplate",
"version": "1.0.0",
"description": "express boilerplate",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node ./src/index.ts",
"localStart": "export port=3000 && nodemon src/index.ts",
"dockerStart": "ts-node ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awakelife93/express-boilerplate.git"
},
"keywords": [
"express",
"boilerplate"
],
"author": "HyunwooPark",
"license": "MIT",
"bugs": {
"url": "https://github.com/awakelife93/express-boilerplate/issues"
},
"_moduleAliases": {
"@": "src"
},
"homepage": "https://github.com/awakelife93/express-boilerplate#readme",
"dependencies": {
"@sentry/node": "^6.18.2",
"@sentry/tracing": "^6.18.2",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"connect-redis": "^4.0.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^5.0.2",
"http": "0.0.1-security",
"https": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"mysql": "^2.18.1",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.34"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/jsonwebtoken": "^8.5.1",
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.2",
"@types/redis": "^2.8.29",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}