-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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": "nodejs-typescript-starter",
"version": "0.1.0",
"description": "",
"main": "build/index.js",
"scripts": {
"prepare": "husky install",
"pre-commit": "lint-staged",
"dev": "ts-node-dev --no-notify src/",
"build": "tsc",
"start": "npm run build && node dist/",
"start:docker": "docker run --rm -it -p 3030:3030 --env-file ./docker.env my-app",
"build:docker": "docker build -t my-app .",
"eslint": "eslint ."
},
"keywords": [
"nodejs",
"typescript",
"starter"
],
"author": "deskoh",
"license": "ISC",
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"dependencies": {
"config": "^3.3.6",
"express": "^4.17.1",
"helmet": "^8.0.0",
"loglevel": "^1.8.0",
"module-alias": "^2.2.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/config": "3.3.5",
"@types/express": "^5.0.0",
"@types/helmet": "4.0.0",
"@types/morgan": "^1.9.3",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.25.3",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.0"
},
"_moduleAliases": {
"@": "build"
}
}