-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.58 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "typescript-express",
"version": "0.0.0",
"description": "A starting point for Node.js express apps with TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/LuceteYang/typescript-express"
},
"author": "sanghwan <jae6120@naver.com>",
"license": "MIT",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"postbuild": "cp .env ./dist && cp -r ./src/public ./dist/ && cp -r ./src/upload ./dist/ && cp ./src/configs/swagger.yaml ./dist/configs/swagger.yaml",
"start": "node dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "nodemon dist/server.js",
"watch-ts": "tsc -w",
"test": "jest --forceExit --coverage --verbose"
},
"dependencies": {
"@hapi/joi": "^15.0.3",
"@sentry/node": "^5.4.0",
"bcrypt": "^3.0.6",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"dotenv": "^8.0.0",
"ejs": "^2.6.1",
"express": "^4.17.1",
"formidable": "^1.2.1",
"helmet": "^3.18.0",
"hpp": "^0.2.2",
"http-errors": "^1.7.2",
"http-status-codes": "^1.3.2",
"jsonwebtoken": "^8.5.1",
"lusca": "^1.6.1",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"mysql2": "^1.6.5",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.8.9",
"sequelize-typescript": "^1.0.0-beta.3",
"swagger-ui-express": "^4.0.6",
"uuid4": "^1.1.4",
"winston": "^3.2.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@sentry/typescript": "^5.3.0",
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.1.7",
"@types/compression": "0.0.36",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/formidable": "^1.0.31",
"@types/hapi__joi": "^15.0.1",
"@types/helmet": "0.0.43",
"@types/hpp": "^0.2.1",
"@types/http-errors": "^1.6.1",
"@types/jest": "^24.0.13",
"@types/jsonwebtoken": "^8.3.2",
"@types/lusca": "^1.5.0",
"@types/morgan": "^1.7.35",
"@types/node": "^12.0.7",
"@types/redis": "^2.8.13",
"@types/sequelize": "^4.28.3",
"@types/supertest": "^2.0.7",
"@types/swagger-ui-express": "^3.0.1",
"@types/yamljs": "^0.2.30",
"chai": "^4.2.0",
"concurrently": "^4.1.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"source-map-support": "^0.5.12",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.1"
}
}