-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.68 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
51
52
53
54
55
56
57
58
59
60
{
"name": "ts-template-cmd-line",
"version": "0.1.0",
"description": "boiler plate node js server on typescript",
"repository": {
"type": "git",
"url": ""
},
"author": "Roberto Sousa <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node dist/server.js",
"build": "tsc && npm run tslint",
"compile": "tsc && npm run tslint && npm run start",
"develop": "nodemon -e ts --exec \"npm run compile\"",
"test": "jest --forceExit --coverage --verbose",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"dependencies": {
"async": "^2.6.0",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"express-flash": "0.0.2",
"express-session": "^1.15.6",
"express-validator": "^4.3.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/async": "^2.0.45",
"@types/bluebird": "^3.5.20",
"@types/body-parser": "^1.16.8",
"@types/compression": "^0.0.35",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.11.1",
"@types/express-session": "^1.15.8",
"@types/jest": "^22.1.3",
"@types/morgan": "^1.7.35",
"@types/node": "^9.4.6",
"@types/request": "^2.47.0",
"@types/shelljs": "^0.7.8",
"@types/supertest": "^2.0.4",
"@types/winston": "^2.3.7",
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"jest": "^22.0.4",
"nodemon": "^1.13.0",
"shelljs": "^0.8.1",
"supertest": "^3.0.0",
"ts-jest": "^22.0.4",
"ts-node": "^5.0.0",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^5.1.0",
"typescript": "^2.7.2"
}
}