-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.21 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
{
"type": "module",
"name": "api-learnerr-v1",
"version": "1.0.0",
"description": "API Learn(Err) version 1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helene-nguyen/api-learnerr-v1.git"
},
"keywords": [
"API"
],
"author": "Yumicode & Megafredo",
"license": "MIT",
"bugs": {
"url": "https://github.com/helene-nguyen/api-learnerr-v1/issues"
},
"homepage": "https://github.com/helene-nguyen/api-learnerr-v1#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"helmet": "^5.1.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.19",
"pg": "^8.7.3",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"@faker-js/faker": "^7.3.0",
"@shiroi-shi/techstack": "^1.1.4",
"debug": "^4.3.4",
"french-badwords-list": "^1.0.5",
"jest": "^28.1.3"
},
"jest": {
"collectCoverage": true,
"detectOpenHandles": true
}
}