-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1023 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1023 Bytes
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
{
"name": "boilerplate",
"version": "1.0.0",
"description": "boiler plate for a express typescript application",
"main": "dist/app/bin/www.js",
"scripts": {
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"docs": "typedoc",
"predev": "npm run lint && npm run docs",
"dev": "ts-node-dev --cls --notify=false --inspect -T -r ./src/app/config/dotenv.ts -- ./src/app/bin/www.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "npm run lint",
"build": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"module-alias": "^2.2.2"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/module-alias": "^2.0.1",
"@types/node": "^14.0.25",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.0.0-pre.55",
"typedoc": "^0.17.8",
"typescript": "^4.4.4"
}
}