-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1018 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1018 Bytes
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
{
"name": "graphql-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development port=4000 nodemon index.js",
"start": "npm run dev"
},
"author": "narae jo",
"license": "MIT",
"dependencies": {
"apollo-server-koa": "^3.6.1",
"cross-env": "^7.0.3",
"graphql": "^16.2.0",
"graphql-fields": "^2.0.3",
"graphql-tools": "^8.2.0",
"joi": "^17.5.0",
"koa": "^2.13.4",
"koa-body": "^4.2.0",
"koa-logger": "^3.2.1",
"koa-router": "^10.1.1",
"koa-session": "^6.2.0",
"mysql2": "^2.3.3",
"sequelize": "^6.13.0",
"sequelize-cli": "^6.4.1"
},
"devDependencies": {
"babel-loader": "^8.2.3",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0"
}
}