-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) Β· 1.33 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
{
"name": "magic-graphql",
"version": "0.0.14",
"description": "Automatic graph generator for Sequelize ORM, it's magic! π§ββοΈπ§π»βπ»",
"main": "index.js",
"repository": "https://github.com/lk321/magic-graphql.git",
"author": "Antonio Orozco <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rm -rf dist && babel ./src --out-dir dist --ignore node_modules,test"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"apollo-server-express": "^2.19.0",
"app-root-path": "^3.0.0",
"compression": "^1.7.4",
"dataloader": "^2.0.0",
"graphql": "^15.4.0",
"graphql-relay": "^0.6.0",
"graphql-sequelize": "^9.4.0",
"graphql-subscriptions": "^1.1.0",
"lodash": "^4.17.20",
"mysql2": "^2.2.5",
"pluralize": "^8.0.0",
"sequelize": "^6.3.5",
"shimmer": "^1.2.1"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/node": "^7.12.6",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
}
}