-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.5 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "nodejs-typescript-starter",
"version": "0.7.1",
"description": "A template for nodejs projects written in typescript",
"main": "index.js",
"scripts": {
"prestart": "npm install",
"start": "npm run build",
"prebuild": "npm run lint",
"build": "tsc",
"test": "istanbul cover --config=istanbul.json node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=test/jasmine.json",
"monitor": "snyk test",
"lint": "tslint 'src/**/*.ts'",
"serve": "nodemon --debug dist/index --watch dist",
"watch:test": "watch 'npm run test' dist --wait=0.1",
"watch:ts": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobYed/nodejs-typescript-starter.git"
},
"keywords": [
"nodejs",
"express",
"typescript"
],
"author": "Robert Dey",
"license": "MIT",
"bugs": {
"url": "https://github.com/RobYed/nodejs-typescript-starter/issues"
},
"homepage": "https://github.com/RobYed/nodejs-typescript-starter#readme",
"dependencies": {
"@types/body-parser": "^1.16.1",
"@types/express": "^4.0.35",
"@types/helmet": "^0.0.34",
"@types/morgan": "^1.7.0",
"@types/winston": "^2.3.0",
"body-parser": "^1.17.0",
"express": "^4.15.0",
"helmet": "^3.5.0",
"morgan": "^1.8.0",
"winston": "^2.3.0"
},
"devDependencies": {
"istanbul": "^0.4.5",
"jasmine": "^2.5.2",
"nodemon": "^1.11.0",
"snyk": "^1.25.0",
"tslint": "^4.5.1",
"typescript": "^2.2.0",
"watch": "^1.0.2"
}
}