-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
{
"name": "express-starter-ts",
"version": "2.0.0",
"description": "This repository gives the developer an Express Starter written in Typescript to kick off there development fast 🔥🔥🔥",
"main": "index.js",
"scripts": {
"build": "rimraf ./dist && tsc",
"start": "npm run build && node ./dist/server.js",
"test": "npm run unit:test && npm run e2e:test",
"unit:test": "cross-env NODE_ENV=test npm run build && mocha ./dist/database/repositories/*.test.js --timeout 5000",
"e2e:test": "cross-env NODE_ENV=test npm run build && mocha ./dist/app/controllers/**/*.controller.test.js --timeout 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmaicaaan/express-starter-ts.git"
},
"author": "JM Santos",
"license": "ISC",
"bugs": {
"url": "https://github.com/jmaicaaan/express-starter-ts/issues"
},
"homepage": "https://github.com/jmaicaaan/express-starter-ts#readme",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"chai-http": "git+https://github.com/chaijs/chai-http.git",
"chance": "^1.0.13",
"commander": "^2.13.0",
"cross-env": "^5.1.3",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.1",
"make-error": "^1.3.2",
"mocha": "^4.0.1",
"pg": "^7.4.0",
"reflect-metadata": "^0.1.10",
"routing-controllers": "^0.7.6",
"shelljs": "^0.8.1",
"supertest": "^3.0.0",
"typedi": "^0.6.0",
"typeorm": "^0.1.9",
"typeorm-typedi-extensions": "^0.1.1"
},
"devDependencies": {
"@types/bcrypt": "^1.0.0",
"@types/body-parser": "^1.16.8",
"@types/chai": "^4.1.0",
"@types/chai-http": "^3.0.3",
"@types/chance": "^0.7.36",
"@types/express": "^4.0.39",
"@types/jsonwebtoken": "^7.2.5",
"@types/mocha": "^2.2.46",
"@types/node": "^8.0.56",
"@types/shelljs": "^0.7.8",
"@types/supertest": "^2.0.4",
"tslint": "^5.9.1",
"typescript": "^2.6.2"
}
}