-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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": "restaurant-orders-db",
"version": "1.0.0",
"description": "Restaurant orders db using mysql. Project to define restaurant orders schemes database and models for data access",
"main": "index.js",
"directories": {
"doc": "doc",
"test": "test"
},
"scripts": {
"start": "node src/index",
"test": "mocha --recursive --exit",
"prettier-watch": "onchange '**/*.js' -- prettier --write {{changed}}",
"mysql": "docker-compose down && docker-compose up -d",
"knex": "node node_modules/knex/bin/cli.js",
"migrate": "npm run knex -- migrate:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sergioadonis/restaurant-orders-db.git"
},
"author": "Sergio Adonis",
"license": "UNLICENSED",
"dependencies": {
"dotenv": "^8.2.0",
"knex": "^0.20.6",
"mysql2": "^2.1.0",
"objection": "^2.0.10",
"sqlite3": "^4.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^6.2.2",
"prettier": "^1.19.1"
},
"bugs": {
"url": "https://github.com/sergioadonis/restaurant-orders-db/issues"
},
"homepage": "https://github.com/sergioadonis/restaurant-orders-db#readme",
"keywords": [
"database",
"mysql"
]
}