-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 874 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
30
31
32
33
{
"name": "pg-app",
"version": "1.0.0",
"description": "Simple app using postgres with pg",
"main": "index.js",
"scripts": {
"lint": "eslint './**/*.js'",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthewglover/pg-app.git"
},
"author": "Matt Glover (https://github.com/matthewglover)",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthewglover/pg-app/issues"
},
"homepage": "https://github.com/matthewglover/pg-app#readme",
"devDependencies": {
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"husky": "^0.11.9"
},
"dependencies": {
"@matthewglover/hapi-wrapper": "^0.2.5",
"env2": "^2.1.1",
"pg": "^6.1.0"
}
}