-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.36 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "user-ms",
"version": "1.0.0",
"description": "This is the example from the Book Hands on RESTful APIs with TypeScript 3",
"main": "./dist/server.js",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist && rimraf reports",
"lint": "tslint ./src/**/*.ts ./test/**/*.spec.ts",
"lint:fix": "tslint --fix ./src/**/*.ts ./test/**/*.spec.ts -t verbose",
"pretest": "cross-env NODE_ENV=test npm run build && npm run lint",
"test": "cross-env NODE_ENV=test mocha --reporter spec --compilers ts:ts-node/register test/**/*.spec.ts --exit",
"test:mutation": "cross-env NODE_ENV=test stryker run",
"stryker:init": "stryker init",
"dev": "cross-env PORT=3000 NODE_ENV=dev ts-node ./src/server.ts",
"prod": "PORT=3000 NODE_ENV=prod npm run build && npm run start",
"prestart": "node dist/utility/config.js",
"start": "NODE_ENV=prod node dist/server.js",
"tsc": "tsc"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"user microservice",
"Hands on RESTful APIs with TypeScript 3",
"TypeScript 3",
"Packt Books"
],
"author": "Biharck Muniz Araújo",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.7",
"@types/chai-http": "^3.0.5",
"@types/express": "^4.16.0",
"@types/express-winston": "^3.0.0",
"@types/mocha": "^5.2.5",
"@types/mongodb": "^3.1.17",
"@types/mongoose": "^5.3.5",
"@types/mongoose-unique-validator": "^1.0.1"
},
"dependencies": {
"@google-cloud/storage": "^2.3.4",
"@types/node": "^10.12.12",
"bcrypt": "3.0.0",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"cross-env": "^5.2.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-winston": "^3.0.1",
"halson": "^3.0.0",
"js2xmlparser": "^3.0.0",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"mongoose": "^5.4.0",
"mongoose-unique-validator": "^2.0.2",
"rimraf": "^2.6.2",
"stryker": "^0.33.1",
"stryker-api": "^0.22.0",
"stryker-html-reporter": "^0.16.9",
"stryker-mocha-framework": "^0.13.2",
"stryker-mocha-runner": "^0.15.2",
"stryker-typescript": "^0.16.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.1",
"winston": "^3.1.0"
}
}