-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 975 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
34
35
36
37
38
{
"name": "prisma-knex",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/motleyagency/prisma-knex.git",
"author": "Valtteri Karesto <[email protected]>",
"license": "MIT",
"dependencies": {
"dotenv": "^6.0.0",
"graphql": "0.13",
"knex": "^0.15.2",
"pg": "^7.4.3",
"prisma": "^1.17.1",
"prisma-client-lib": "^1.17.1"
},
"scripts": {
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,graphql,md,css,scss,less,ts}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-motley": "9.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"prettier": "^1.12.1"
}
}