-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.1 KB
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": "node-typescript-startkit",
"version": "1.0.0",
"description": "Start Kit for a node API",
"main": "\u001b[A\u001b[D\u001b[B\u001b[C\u001b[C",
"scripts": {
"build": "tsc",
"dev": "tsc-watch --outDir ./dist --onSuccess \"node ./dist/index.js\" ",
"devtest": "tsc-watch --outDir ./dist --onSuccess \"mocha ./dist/**/*.spec.js node ./dist/index.js\" ",
"test": "tsc && mocha dist/**/*.spec.js",
"lint": "eslint ./src --ext ts",
"lint:fix": "eslint ./src --fix --ext ts",
"doc": "typedoc --options typedoc.json src"
},
"author": "Daniel Coll",
"license": "ISC",
"dependencies": {
"@types/node": "^10.0.3",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"express-session": "^1.15.6",
"request": "^2.85.0",
"supertest": "^3.0.0",
"supertest-session": "^3.2.0"
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"mocha": "^5.1.1",
"tsc-watch": "^1.0.21",
"typedoc": "^0.11.1",
"typescript-eslint-parser": "^15.0.0"
}
}