forked from alaneicker/easy-db
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 951 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 951 Bytes
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
{
"name": "easy-db",
"version": "1.0.0",
"description": "A database utility for querying Sqlite",
"main": "index.js",
"scripts": {
"build": "babel -d ./dist ./lib -s",
"start": "NODE_ENV=development nodemon --exec babel-node ./example",
"setup": "babel-node ./example/setup",
"drop": "babel-node ./lib/cli"
},
"keywords": [
"sqlite",
"database"
],
"author": "Alan Eicker",
"license": "ISC",
"dependencies": {
"core-js": "^3.2.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.5.4",
"sqlite": "^3.0.3"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime-corejs3": "^7.5.5",
"boxen": "^4.1.0",
"chalk": "^2.4.2",
"inquirer": "^7.0.0",
"nodemon": "^1.19.1"
}
}