-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "rumah-sandar-server",
"version": "1.0.0",
"description": "Final Project Hacktiv8",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest --runInBand --forceExit --verbose --coverage --silent",
"start": "node ./bin/www",
"redoMigration": "sequelize db:migrate:undo:all && sequelize db:migrate && sequelize db:seed:all",
"db:test": "cross-env NODE_ENV=test npx sequelize-cli db:drop && cross-env NODE_ENV=test npx sequelize-cli db:create && cross-env NODE_ENV=test npx sequelize-cli db:migrate",
"dev": "nodemon bin/www"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lannyalfiani/rumah-sandar-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lannyalfiani/rumah-sandar-server/issues"
},
"homepage": "https://github.com/lannyalfiani/rumah-sandar-server#readme",
"dependencies": {
"axios": "^1.1.3",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.32.0",
"cors": "^2.8.5",
"cron": "^2.1.0",
"dayjs": "^1.11.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"handlebars": "^4.7.7",
"imagekit": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.8.0",
"nodemailer-smtp-transport": "^2.7.4",
"pg": "^8.8.0",
"sequelize": "^6.25.3",
"uninstall": "^0.0.0",
"util": "^0.12.5"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.2.2",
"supertest": "^6.3.1"
}
}