-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.33 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
{
"name": "Server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"db:create:test": "NODE_ENV=test sequelize db:create",
"db:migrate:test": "NODE_ENV=test sequelize db:migrate",
"db:seed:all:test": "NODE_ENV=test sequelize db:seed:all",
"db:create:dev": "NODE_ENV=development sequelize db:create",
"db:migrate:dev": "NODE_ENV=development sequelize db:migrate",
"db:seed:all:dev": "NODE_ENV=development sequelize db:seed:all",
"test": "NODE_ENV=test npx jest --detectOpenHandles --coverage",
"dev": "NODE_ENV=development nodemon bin/http",
"production": "NODE_ENV=production nodemon bin/http",
"start": "node bin/http"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Final-Project-RUKUN/Server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Final-Project-RUKUN/Server/issues"
},
"homepage": "https://github.com/Final-Project-RUKUN/Server#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.6.0",
"sequelize": "^6.6.2"
},
"devDependencies": {
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"supertest": "^6.1.3"
},
"jest": {
"testPathIgnorePatterns": ["routes/midtransRoute.js"]
}
}