forked from camesine/Typescript-restful-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.64 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
61
62
63
64
65
{
"name": "typescript-restful-starter",
"version": "0.1.0",
"description": "kit starter node application",
"main": "server.js",
"scripts": {
"start": "npm run build && cd dist && cross-env NODE_ENV=PRODUCTION node Index.js",
"dev": "nodemon",
"test": "cross-env NODE_ENV=test nyc mocha test/**/*.ts",
"build": "npm run clean && tsc --outDir dist",
"clean": "rimraf dist"
},
"keywords": [
"node",
"express",
"typeorm",
"typescript",
"tslint",
"JWT",
"E2015"
],
"author": "Hector Riquelme",
"license": "MIT",
"dependencies": {
"@types/express": "^4.11.1",
"@types/jsonwebtoken": "^7.2.6",
"@types/method-override": "0.0.31",
"@types/node": "^10.5.2",
"body-parser": "^1.18.2",
"class-validator": "^0.8.5",
"cluster": "^0.7.7",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.2.0",
"method-override": "^2.3.10",
"morgan": "^1.9.0",
"mysql": "^2.15.0",
"os": "^0.1.1",
"path": "^0.12.7",
"superagent": "^3.8.2",
"token-extractor": "^0.1.6",
"ts-node": "^7.0.0",
"typeorm": "^0.2.7",
"typescript": "^2.6.2"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/cors": "^2.8.4",
"@types/express-jwt": "0.0.40",
"@types/mocha": "^5.2.4",
"@types/morgan": "^1.7.35",
"@types/rimraf": "2.0.2",
"@types/superagent": "^3.5.7",
"@types/supertest": "^2.0.4",
"chai": "^4.1.2",
"cross-env": "^5.1.4",
"mocha": "^5.0.4",
"nodemon": "^1.17.2",
"nyc": "^12.0.2",
"rimraf": "^2.6.2",
"supertest": "^3.1.0",
"tslint": "^5.9.1"
}
}