-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.31 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.31 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "sopoxide",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/app.ts",
"prod": "tsc && node ./dist/app.js",
"build": "tsc -p .",
"test": "ava --verbose",
"coverage": "nyc --reporter=json ava",
"lint": "eslint --ignore-path .gitignore ."
},
"keywords": [],
"author": "Zeth <[email protected]>",
"license": "ISC",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/faker": "^5.5.7",
"@types/helmet": "^4.0.0",
"@types/lodash": "^4.14.171",
"@types/mock-req-res": "^1.1.3",
"@types/mongoose": "^5.11.97",
"@types/mongoose-paginate-v2": "^1.3.11",
"@types/mongoose-unique-validator": "^1.0.5",
"@types/morgan": "^1.9.3",
"@types/node": "^16.3.2",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@types/sinon": "^10.0.2",
"@types/sinon-mongoose": "^1.3.11",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"ava": "^3.15.0",
"eslint": "^7.30.0",
"eslint-plugin-node": "^11.1.0",
"faker": "^5.5.3",
"mock-req-res": "^1.2.0",
"nodemon": "^2.0.12",
"nyc": "^15.1.0",
"sinon": "^11.1.1",
"sinon-mongoose": "^2.3.0",
"source-map-support": "^0.5.19",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@types/nodemailer": "^6.4.4",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"google-auth-library": "^7.3.0",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongodb-memory-server": "^7.2.0",
"mongoose": "^5.13.2",
"mongoose-paginate-v2": "^1.4.1",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.10.0",
"nodemailer": "^6.6.3",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"winston": "^3.2.1"
},
"ava": {
"files": [
"tests/**/*.test.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}