-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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": "ocac-api-for-training",
"version": "0.0.1",
"description": "OCTO Woapi nodejs API skeleton",
"main": "./src/index.js",
"scripts": {
"start": "npm run db:migrate:up && node -r dotenv/config ./src/index.js",
"dev": "nodemon -r dotenv/config --verbose",
"prod": "npm run db:migrate:up && npm start",
"test": "DB_NAME=db.sqlite.test npm run db:migrate:up && mocha src/**/*test.js",
"db:migrate:up": "node ./src/bin/database-migration.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/octo-woapi/ocac-api-for-training.git"
},
"keywords": [
"API",
"OCTO",
"OCAC",
"nodejs",
"hapi"
],
"author": "OCTO Technology - Tribu WOAPI",
"license": "ISC",
"bugs": {
"url": "https://github.com/octo-woapi/ocac-api-for-training/issues"
},
"homepage": "https://github.com/octo-woapi/ocac-api-for-training#readme",
"dependencies": {
"@hapi/boom": "9.0.0",
"@hapi/hapi": "20.0.3",
"dotenv": "8.2.0",
"joi": "17.3.0",
"sequelize": "^6.6.1",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "8.2.1",
"nodemon": "2.0.6",
"supertest": "6.0.1"
}
}