-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
58 lines (58 loc) · 1.67 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
{
"name": "api-auth",
"version": "0.0.1",
"description": "API Auth CollabCodeTraining",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js",
"build": "sucrase ./src -d ./dist --transforms imports",
"allTest": "NODE_ENV=test ./node_modules/.bin/nyc ./node_modules/.bin/_mocha",
"test": "docker exec -it training-auth_auth_1 npm run allTest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CollabCodeTech/collabcodetraining-api-auth.git"
},
"author": "CollabCode",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/CollabCodeTech/collabcodetraining-api-auth/issues"
},
"homepage": "https://github.com/CollabCodeTech/collabcodetraining-api-auth#readme",
"dependencies": {
"app-root-path": "^2.2.1",
"bcrypt": "^3.0.8",
"dotenv": "^8.2.0",
"helmet": "^3.21.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "^5.9.3",
"morgan": "^1.9.1",
"restify": "^8.5.1",
"restify-cors-middleware": "^1.1.1",
"restify-errors": "^8.0.2",
"restify-jwt-community": "^1.1.2",
"saslprep": "^1.0.3",
"superagent": "^5.2.2",
"winston": "^3.2.1",
"yup": "^0.27.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"faker": "^4.1.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mocha": "^6.2.2",
"mochawesome": "^4.1.0",
"nodemon": "^1.19.4",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"sucrase": "^3.12.1",
"supertest": "^4.0.2"
}
}