-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
102 lines (102 loc) · 3.01 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "graphql-sequelize-crud",
"version": "0.4.4",
"description": "Automatically generate queries and mutations from Sequelize models",
"main": "./dist/src/index",
"types": "./dist/src/index.d.ts",
"directories": {
"test": "test",
"lib": "dist",
"example": "demo"
},
"files": [
"dist/src",
"src/@types"
],
"scripts": {
"prepublishOnly": "npm run build",
"dev": "tsc --watch",
"compile": "tsc",
"test": "mocha --require source-map-support/register dist/test",
"test:watch": "mocha --watch dist/test",
"coverage": "nyc --extension '.ts' --reporter html --reporter lcov --reporter text --reporter teamcity npm run test",
"build": "npm run clean && npm run compile",
"clean": "rm -rf dist/*",
"demo": "node dist/demo/",
"viz": "echo \"Make sure server is started.\"; graphqlviz http://localhost:3000/graphql | dot -Tpng -o graph.png",
"lint": "tslint --config tslint.json \"{src,test}/**/*.{ts,tsx}\"",
"lint-fix": "tslint --fix --config tslint.json \"{src,test}/**/*.{ts,tsx}\"",
"all": "npm run build && npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Glavin001/graphql-sequelize-crud.git"
},
"keywords": [
"graphql",
"relay",
"sequelize",
"mysql",
"sql",
"models",
"crud",
"create",
"read",
"update",
"delete",
"api"
],
"author": "Glavin Wiechert (https://github.com/Glavin001)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Glavin001/graphql-sequelize-crud/issues"
},
"homepage": "https://github.com/Glavin001/graphql-sequelize-crud#readme",
"devDependencies": {
"@types/camelcase": "^4.1.0",
"@types/chai": "^4.0.4",
"@types/express": "^4.0.37",
"@types/express-graphql": "^0.0.34",
"@types/graphql": "^0.11.5",
"@types/graphql-relay": "^0.4.2",
"@types/lodash": "^4.14.77",
"@types/mocha": "^2.2.43",
"@types/pluralize": "^0.0.27",
"@types/sequelize": "^4.0.76",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"express": "^4.16.2",
"express-graphql": "^0.5.3",
"graphql": "^0.11.7",
"graphql-playground": "^1.0.13",
"graphql-relay": "^0.4.2",
"graphql-sequelize-teselagen": "^5.3.7",
"graphqlviz": "^1.1.0",
"mocha": "^2.5.3",
"mysql": "^2.11.1",
"nyc": "^11.2.1",
"sequelize": "^3.23.4",
"source-map-support": "^0.5.0",
"sqlite3": "^3.1.13",
"tslint": "^5.7.0",
"tslint-clean-code": "^0.1.8",
"tslint-microsoft-contrib": "^5.0.1",
"typescript": "^2.5.3"
},
"dependencies": {
"bluebird": "^3.4.1",
"camelcase": "^3.0.0",
"lodash": "^4.13.1",
"pluralize": "^3.0.0"
},
"peerDepedencies": {
"graphql": ">=0.7.0",
"graphql-relay": "^0.4.2",
"graphql-sequelize-teselagen": "^5.3.7",
"sequelize": "^3.23.4"
}
}