forked from TEAM-C10-KM-BINAR-BATCH-5/backend-mooc-binar-c10
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 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
{
"name": "test-api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node -r dotenv/config bin/www",
"dev": "nodemon -r dotenv/config bin/www",
"db:create": "sequelize db:create",
"db:drop": "sequelize db:drop",
"db:migrate": "sequelize db:migrate",
"db:migrate:undo": "sequelize db:migrate:undo:all",
"db:seed": "sequelize db:seed:all",
"db:seed:undo": "sequelize db:seed:undo:all",
"lint": "eslint .",
"fixlint": "eslint . --fix",
"test": "jest --setupFiles dotenv/config --coverage --colors --verbose --detectOpenHandles --forceExit"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"imagekit": "^4.1.4",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"node-fetch": "^2.7.0",
"nodemailer": "^6.9.7",
"otp-generator": "^4.0.1",
"otp-without-db": "^1.0.6",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.35.1",
"sequelize-cli": "^6.6.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"eslint": "^8.54.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"nodemon": "^3.0.1",
"prettier": "^2.8.8",
"supertest": "^6.3.1"
}
}