forked from davidrf/graphql-bookclub-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.52 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
50
51
52
53
54
{
"name": "apprentice-node-starter-kit",
"version": "1.0.0",
"description": "Node.js starter kit for apprentice projects",
"main": "index.js",
"author": "David Rodriguez Fuentes <[email protected]>",
"license": "MIT",
"scripts": {
"db:create": "yarn sequelize db:create",
"db:drop": "yarn sequelize db:drop",
"db:migrate": "yarn sequelize db:migrate",
"db:rollback": "yarn sequelize db:migrate:undo",
"generate:migration": "yarn sequelize migration:generate",
"sequelize": "node_modules/.bin/sequelize",
"start": "node_modules/.bin/nodemon ./config/routes.js",
"test": "NODE_ENV=test jest -b -i",
"setup:test": "NODE_ENV=test yarn db:create && NODE_ENV=test yarn db:migrate"
},
"dependencies": {
"apollo-server": "^2.2.6",
"apollo-server-testing": "^2.2.6",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"graphql": "^14.0.2",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"sequelize": "^4.37.10",
"sequelize-cli": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"jest": "^23.1.0",
"nodemon": "^1.17.5"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}