-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.73 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "wisp-users-microservice",
"version": "0.0.1",
"description": "WISP Microservice to handle user data and interactions",
"main": "dist/server.js",
"scripts": {
"test": "docker-compose -f docker-compose.test.yaml up --abort-on-container-exit",
"test:local": "nyc mocha -r ts-node/register \"./tests/**/*.test.ts\"",
"start": "NODE_ENV=dev docker-compose up",
"start:local": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/server.ts",
"start:prod": "NODE_ENV=production node dist/server.js",
"build": "tsc -p tsconfig.json",
"watch": "tsc -w",
"format": "eslint --fix --max-warnings 0 '{src,tests}/**/*.{js,ts}'",
"lint": "eslint --max-warnings 0 '{src,tests}/**/*.{js,ts}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/competemcgill/wisp-users-microservice.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/competemcgill/wisp-users-microservice/issues"
},
"homepage": "https://github.com/competemcgill/wisp-users-microservice#readme",
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.16.1",
"@types/express-winston": "^4.0.0",
"@types/jsonwebtoken": "^8.3.5",
"@types/mocha": "^5.2.6",
"@types/mongodb": "^3.1.26",
"@types/mongoose": "^5.5.0",
"@types/node": "^11.13.10",
"@types/sinon": "^9.0.4",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"axios": "^0.18.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"codecov": "^3.5.0",
"cors": "^2.8.5",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"express-winston": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"mocha": "^6.1.4",
"mongoose": "^5.5.7",
"nodemon": "^1.19.0",
"nyc": "^14.1.1",
"prettier": "^2.0.5",
"sinon": "^9.0.2",
"sinon-express-mock": "^2.2.1",
"source-map-support": "^0.5.12",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.2",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"winston": "^3.2.1"
},
"devDependencies": {
"husky": "^4.2.5",
"lint-staged": "^10.2.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,tests}/**/*.{js,ts}": "npm run format"
}
}