-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1022 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
38
39
40
41
42
{
"name": "starter-node-api",
"version": "2.0.0",
"description": "Template REST API",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch & nodemon dist",
"test": "tsc && mocha dist/__tests__/**/*.spec.js",
"lint": "eslint src --ext ts",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/Vitormdias/Node-Starter.git"
},
"keywords": [
"Node",
"Express",
"Starter"
],
"author": "Vitor Manfre <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.7",
"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.4.2",
"tsc": "1.20150623.0",
"typescript": "^3.3.3333",
"typescript-eslint-parser": "3.0.0"
},
"dependencies": {
"express": "4.15.3",
"nodemon": "1.11.0"
}
}