forked from KWEBofficial/KUUK-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.58 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
{
"name": "express-ts-typeorm-boilerplate",
"version": "1.0.0",
"description": "express-ts-typeorm-boilerplate",
"main": "src/index.ts",
"scripts": {
"build": "tsc --build",
"prod": "cross-env NODE_ENV=prod node dist/index.js",
"dev": "cross-env NODE_ENV=dev ts-node-dev --rs --respawn --watch src src/index.ts",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" --fix",
"lint:dryrun": "eslint \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/sjn0910/express-ts-typeorm-boilerplate.git"
},
"author": "sjn0910",
"license": "MIT",
"bugs": {
"url": "https://github.com/sjn0910/express-ts-typeorm-boilerplate/issues"
},
"homepage": "https://github.com/sjn0910/express-ts-typeorm-boilerplate#readme",
"dependencies": {
"@types/express-session": "^1.17.10",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mysql2": "^3.6.5",
"reflect-metadata": "^0.2.1",
"typeorm": "^0.3.17",
"typeorm-naming-strategies": "^4.1.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}