-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
29 lines (29 loc) · 929 Bytes
/
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
{
"name": "gatsby-source-sql",
"description": "Plugin for connecting arbitrary SQL databases to Gatsby. Supported SQL databases are MySQL/MariaDB, PostgreSQL, Amazon Redshift, SQLite3, Oracle and MSSQL",
"version": "0.1.0",
"author": "Edgar Ramírez-Mondragón <[email protected]>",
"repository": "https://github.com/mrfunnyshoes/gatsby-source-sql",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin"
],
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.1.5",
"knex": "^0.20.10"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"babel-preset-gatsby-package": "^0.1.2",
"cross-env": "^5.2.0"
}
}