-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "mobistudyapi",
"author": "MobyStudy team",
"version": "0.3.1",
"description": "The REST API of Mobistudy",
"main": "./src/www.mjs",
"type": "module",
"scripts": {
"lint": "eslint --ext .js,.mjs src",
"start": "node ./src/www.mjs",
"dev": "nodemon --trace-warnings",
"test": "jasmine test/jasmine/**/*.spec.js",
"test:watch": "nodemon --exec 'jasmine \"test/jasmine/**/*.spec.js\"'"
},
"dependencies": {
"ajv": "^8.12.0",
"arangojs": "^8.3.0",
"archiver": "^6.0.1",
"axios": "^1.6.3",
"bcrypt": "^5.1.1",
"deepmerge": "^4.3.1",
"express": "^4.21.0",
"helmet": "^7.1.0",
"nodemailer": "^6.9.9",
"owasp-password-strength-test": "^1.3.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pino": "^8.17.2",
"pino-http": "^9.0.0",
"rotating-file-stream": "^3.2.1",
"tweetnacl": "^1.0.3",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"eslint": "^8.44.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"jasmine": "^5.1.0",
"nodemon": "^3.0.2"
},
"nodemonConfig": {
"ignore": [
"tmp/**",
"tasksuploads/**"
]
}
}