-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"engines": {
"node": "16",
"npm": "8"
},
"scripts": {
"dev": "npx nodemon",
"build": "rimraf ./build && npx tsc && npx tsc-alias",
"start": "yarn build && node build/main",
"lint": "npx eslint ./src",
"formatEslint": "npx eslint ./src --fix",
"formatPrettier": "prettier --write .",
"precommit": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,html}": "yarn formatEslint && yarn formatPrettier"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.5",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.3"
}
}