-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.11 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.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
{
"name": "api-template",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/drethenrain/api-template.git",
"author": "drethenrain <drethenrain@hotmail.com>",
"license": "MIT",
"scripts": {
"dev": "tsnd --respawn --no-notify --transpile-only -r tsconfig-paths/register src/index.ts",
"build": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"lint": "eslint ./ --ext js,ts",
"lint:fix": "eslint ./ --ext js,ts --fix",
"prepare": "husky install"
},
"dependencies": {
"express": "^4.18.1",
"helmet": "^5.1.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"dotenv": "^16.0.1",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.0.0",
"tscpaths": "^0.0.9",
"typescript": "^4.7.4"
}
}