-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.56 KB
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
55
56
57
58
59
60
61
{
"name": "node-graphql-kit",
"version": "1.0.0",
"description": "🧘🚀 A Node.js kit with GraphQL, Sequelize, PostgreSQL and awesome tools.",
"main": "src/index.js",
"repository": "git@github.com:103cuong/node-graphql-kit.git",
"author": "Nguyen Duy Cuong <103cuong@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node build/index.js",
"start:dev": "nodemon --exec babel-node src/index.js",
"prebuild": "rm -rf build",
"build": "babel src --out-dir build",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"engines": {
"node": ">=8.10.0"
},
"lint-staged": {
"*.js": [
"yarn lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@babel/runtime": "^7.10.3",
"apollo-server-errors": "^2.4.1",
"giin": "^0.1.3",
"graphql-scalars": "^1.1.2",
"graphql-tools": "^4.0.5",
"graphql-yoga": "^1.18.3",
"joi": "^14.3.1",
"juno-js": "^0.1.1",
"lodash": "^4.17.15",
"pg": "^8.2.1",
"pg-hstore": "^2.3.3",
"sequelize": "^5.21.10",
"umzug": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.5.5",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"nodemon": "^1.19.1"
}
}