-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
87 lines (87 loc) · 2.36 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "graphcraft",
"version": "1.2.1",
"description": "Rapildy build and extend GraphQL API based on Sequelize models. This library helps you focus on business logic while taking care of GraphQL schema automatically.",
"main": "src/index.js",
"scripts": {
"publish-beta": "npm run lint && npm publish --tag beta",
"publish-prod": "npm publish",
"check": "npm run lint && npm run test",
"format": "prettier-eslint --write \"src/*.js\"",
"jest": "jest",
"jest-coverage": "npm run jest -- --coverage",
"lint": "eslint src --cache",
"test": "npm run test-db-reset && npm run jest",
"test-db-reset": "rm -rf tests/database.db && node tests/reset-db.js"
},
"files": [
"/src",
"package.json",
"README"
],
"publishConfig": {
"cache": "cache/.npm",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/almost-full-stack/graphcraft"
},
"keywords": [
"graphql",
"sequelize"
],
"author": "Ali Rizwan <[email protected]>",
"contributors": [
{
"name": "Ali Rizwan",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/almost-full-stack/graphcraft/issues"
},
"homepage": "https://github.com/almost-full-stack/graphcraft#readme",
"dependencies": {
"camelcase": "^5.3.1",
"cls-hooked": "^4.2.2",
"dataloader-sequelize": "^2.3.3",
"graphql-relay": "^0.10.0",
"graphql-sequelize": "^9.5.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.4",
"graphql": "^16.8.1",
"graphql-http": "^1.22.0",
"husky": "^1.1.4",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"prettier-eslint-cli": "^5.0.1",
"sequelize": "^6.2.2",
"sequelize-cli": "^6.1.0",
"sqlite3": "^5.0.2",
"stringifier": "^2.0.0",
"supertest": "^6.0.1",
"graphql-playground-middleware-express": "^1.7.23"
},
"peerDependencies": {
"graphql": "^16.0.0",
"sequelize": "^6.2.2"
},
"jest": {
"testEnvironment": "node",
"verbose": true
},
"husky": {
"hooks": {}
}
}