-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 2.09 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
{
"name": "graphqlizejs",
"description": "Generate DataTypes and Resolvers from your ORM Sequilize models",
"version": "0.4.4",
"main": "./lib/index.js",
"engines": {
"node": ">=10.0"
},
"keywords": [
"sequelizejs",
"sequelize",
"graphql",
"apollo",
"ORM"
],
"author": "Steven Koch <stvkoch@gmail.com>",
"license": "MIT",
"scripts": {
"example": "./node_modules/nodemon/bin/nodemon.js --exec babel-node ./example/server.js",
"start": "./node_modules/nodemon/bin/nodemon.js --exec babel-node ./example/server.js",
"test": "./node_modules/mocha/bin/mocha --require @babel/polyfill --require @babel/register",
"prepublish-watch": "./node_modules/nodemon/bin/nodemon.js --exec npm run prepublish",
"prepublish": "./node_modules/@babel/cli/bin/babel.js src --out-dir lib"
},
"nodemonConfig": {
"ignore": [
"test/*",
"lib/*"
]
},
"dependencies": {
"graphql-iso-date": "^3.6.1",
"lodash.concat": "^4.5.0",
"lodash.first": "^3.0.0",
"lodash.upperfirst": "^4.3.1",
"sequelize": "^6.19.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"apollo-boost": "^0.1.13",
"apollo-server": "^2.12.0",
"apollo-server-express": "^2.12.0",
"apollo-server-testing": "^2.12.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"faker": "^4.1.0",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"graphql-type-json": "^0.3.2",
"hasha": "^3.0.0",
"lodash.pick": "^4.4.0",
"lodash.random": "^3.2.0",
"lodash.times": "^4.3.2",
"lodash.uniqby": "^4.7.0",
"mocha": "^10.1.0",
"mysql2": "^3.9.8",
"nodemon": "^3.1.4",
"pg": "^7.18.2",
"prettier": "^1.19.1",
"sequelize-cli": ">=5.0.0",
"sqlite3": "^5.1.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"overrides": {
"braces": "3.0.3",
"lodash": "4.17.21",
"ansi-regex": "~4.1.1"
}
}