-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.37 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
{
"name": "express-api-seed",
"version": "0.1.0",
"description": "seed project for creating a node api based on express",
"main": "dist/main.js",
"scripts": {
"start": "node dist/main.js",
"retry": "npm run quick-build && npm run start",
"build": "npm run clean && npm run typings && npm run lint && npm run tsc",
"quick-build": "npm run clean && npm run tsc",
"clean": "rimraf ./bundles/ ./dist/ && npm run clean-src",
"clean-src": "rimraf ./src/**/*.js ./src/**/*.d.ts",
"lint": "tslint ./src/**/*.ts",
"tsc": "tsc --project . --declaration",
"test": "npm run quick-build && npm run coverage",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- ./dist/test/**/*.spec.js -R spec",
"typings": "typings install"
},
"keywords": [
"node",
"express",
"api",
"seed"
],
"author": "Scott M Gerstl <[email protected]>",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.3.0",
"body-parser": "^1.15.0",
"crypto": "0.0.3",
"es6-promise": "^3.2.1",
"express": "^4.13.4",
"moment": "^2.14.1",
"reflect-metadata": "^0.1.8",
"typedi": "^0.4.2"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"rimraf": "^2.5.2",
"tslint": "^3.11.0",
"typescript": "^1.8.10",
"typings": "^0.8.1",
"uglify-js": "^2.6.4"
}
}