-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.2 KB
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
{
"name": "oakserver",
"version": "0.0.1",
"description": "koa server for blog platform",
"main": "./server/index.js",
"scripts": {
"test": "echo \"TEST\"",
"dev": "cross-env NODE_ENV=development nodemon ./server/index.js --inspect --exec babel-node",
"build": "babel ./server/ -d dist --source-maps",
"start": "cross-env NODE_ENV=production node ./dist/index.js"
},
"keywords": [
"koa",
"graphql"
],
"author": "BetaMee",
"license": "MIT",
"dependencies": {
"apollo-server-koa": "^1.3.5",
"aws-sdk": "^2.226.1",
"cross-env": "^5.1.4",
"graphql": "^0.13.2",
"graphql-tools": "^2.24.0",
"jsonwebtoken": "^8.2.1",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-jwt": "^3.3.1",
"koa-multer": "^1.0.2",
"koa-router": "^7.4.0",
"koa-static": "^4.0.2",
"koa2-cors": "^2.0.5",
"moment": "^2.22.1",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"nodemon": "^1.17.3"
},
"engines": {
"node": "8.x"
}
}