-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "typescript-backend-template",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"author": "soy0ka",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"eslint": "^8.0.1",
"express": "^4.17.2",
"helmet": "^5.1.0",
"socket.io": "^4.7.5",
"typescript": "^4.5.5",
"util": "^0.12.4"
},
"scripts": {
"build": "tsc && tsc-alias",
"start": "node ./dist/index.js",
"alias": "tsc-alias",
"dev": "nodemon",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/jsonwebtoken": "8.5.8",
"@types/node": "18.6.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint-config-standard": "17.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"tsc-alias": "^1.8.10"
},
"repository": "https://github.com/soy0ka/Typescript-Express-Template.git"
}