-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.01 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
{
"dependencies": {
"body-parser": "^1.19.1",
"cookie-parser": "^1.4.6",
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-session": "^1.17.2",
"path": "^0.12.7"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"name": "ts-express-template",
"description": "My express template with typescript (no bundle)",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev ./src/server.ts",
"start": "nodemon ./dist/server.js",
"prod": "npm run build && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FoobarIT/ts-express-template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FoobarIT/ts-express-template/issues"
},
"homepage": "https://github.com/FoobarIT/ts-express-template#readme"
}