-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 966 Bytes
/
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
{
"name": "node-typescript-boilerplate",
"version": "0.0.0",
"description": "",
"engines": {
"node": "16"
},
"scripts": {
"build": "etsc",
"dev": "nodemon",
"lint": "eslint . --ext .ts --ext .mts",
"lint:fix": "npm run lint -- --fix",
"phoenix": "rm -rf ./node_modules && rm -f ./package-lock.json && npm install --no-audit --no-fund",
"prettier": "prettier --config .prettierrc --write .",
"start": "node dist",
"test": "vitest run",
"test:watch": "vitest watch"
},
"author": "",
"license": "",
"devDependencies": {
"@types/node": "18.8.2",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"esbuild": "0.15.10",
"esbuild-node-tsc": "2.0.4",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"nodemon": "2.0.20",
"prettier": "2.7.1",
"typescript": "4.8.4",
"vitest": "0.23.4"
}
}