forked from DirkWolthuis/graphql-express-migrating-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 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
{
"name": "graphql-express-migrating-mysql",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "npm-run-all --parallel build:watch run:watch",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"build:watch": "webpack --watch",
"run": "node ./dist/app.js",
"run:watch": "nodemon ./dist/app.js"
},
"author": "Dirk H. Wolthuis",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"apollo-server-express": "^2.7.0",
"babel-loader": "^8.0.5",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"graphql": "^14.3.1",
"mysql2": "^1.6.5",
"nodemon": "^1.18.10",
"npm-run-all": "^4.1.5",
"sequelize": "^5.15.1",
"webpack-cli": "^3.2.3"
},
"devDependencies": {
"webpack": "^4.29.4",
"webpack-node-externals": "^1.7.2"
}
}