-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 880 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
37
{
"name": "ts-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch & nodemon dist",
"tsWatch": "tsc --watch",
"test": "mocha --watch dist/**/*.spec.js",
"lint": "eslint src --ext ts",
"tsc": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/chai": "^4.1.2",
"@types/node": "7.0.22",
"chai": "^4.1.2",
"express": "4.15.3",
"nodemon": "1.11.0"
},
"devDependencies": {
"@types/mocha": "2.2.41",
"@types/node": "7.0.22",
"eslint": "4.0.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-promise": "3.5.0",
"mocha": "3.4.2",
"supertest": "3.0.0",
"tsc": "1.20150623.0",
"typescript": "2.3.3",
"typescript-eslint-parser": "3.0.0"
}
}