-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "express-ts",
"version": "1.0.0",
"description": "express API server with ts",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run watch",
"build": "npm run build-ts && npm run tslint",
"build-ts": "tsc",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve\"",
"watch-ts": "tsc -w",
"serve": "nodemon app/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KindOf/express-ts.git"
},
"keywords": [
"express",
"typescript",
"api",
"boilerplate"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/KindOf/express-ts/issues"
},
"homepage": "https://github.com/KindOf/express-ts#readme",
"dependencies": {
"@types/body-parser": "^1.16.5",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.0.37",
"@types/morgan": "^1.7.33",
"@types/node": "^8.0.31",
"@types/winston": "^2.3.6",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"express": "^4.16.1",
"morgan": "^1.9.0",
"typescript": "^2.5.3",
"winston": "^2.4.0"
},
"devDependencies": {
"concurrently": "^3.5.1",
"tslint": "^5.7.0"
}
}