-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.11 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.11 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
{
"name": "typescript-express-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"prebuild": "copyfiles -u 1 src/views/**/* src/public/**/* dist/",
"start": "node dist/server.js",
"dev": "nodemon --exec ts-node --files src/server.ts",
"test": "mocha -r ts-node/register ./src/test/**/*.spec.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techbless/typescript-express-starter.git"
},
"author": "techbless <yunbin@hansung.ac.kr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/techbless/typescript-express-starter/issues"
},
"homepage": "https://github.com/techbless/typescript-express-starter#readme",
"devDependencies": {
"@types/bluebird": "^3.5.37",
"@types/chai": "^4.3.4",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/helmet": "0.0.48",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@types/passport": "^1.0.11",
"@types/passport-local": "^1.0.34",
"@types/sequelize": "^4.28.14",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"chai": "^4.3.7",
"copyfiles": "^2.4.1",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.1.0",
"prettier": "^2.8.0",
"supertest": "^6.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@types/cors": "^2.8.12",
"@types/type-check": "^0.3.27",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-safe-async": "^3.0.0",
"express-session": "^1.17.3",
"helmet": "^6.0.0",
"mysql2": "^2.3.3",
"nodemon": "^2.0.20",
"npm-check-updates": "^16.4.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.25.6",
"sequelize-cli": "^6.5.2",
"type-check": "^0.4.0"
}
}