-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
36 lines (36 loc) · 838 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
36
{
"name": "ts-express",
"version": "1.0.0",
"main": "src/server.ts",
"author": "Soe Tun",
"license": "MIT",
"private": true,
"scripts": {
"build": "npm run build-ts",
"build-ts": "tsc",
"clean": "rm -rf ./dist",
"serve": "node dist/server.js",
"start": "npm run serve",
"test": "jest",
"watch-ts": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soelinn/express-ts-starter.git"
},
"dependencies": {
"compression": "^1.7.4",
"express": "^4.17.1",
"helmet": "^4.2.0"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/express": "^4.17.9",
"@types/helmet": "^4.0.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"eslint": "^7.16.0",
"jest": "^26.6.3",
"typescript": "^4.1.3"
}
}