This repository was archived by the owner on May 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 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
{
"name": "group",
"version": "0.0.1",
"description": "a simple talking group",
"main": "server/app.js",
"repository": "git@github.com:FeddyTeam/group.git",
"author": "bin16 <bin16@outlook.com>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=testing&& node server/app.js",
"dev": "node server/app.js",
"win": "set NODE_ENV=testing&& node server/app.js",
"win_migrate": "set NODE_ENV=testing&&knex migrate:latest --knexfile=server/knex/knexfile.js",
"win_seed": "set NODE_ENV=testing&&knex seed:run --knexfile=server/knex/knexfile.js"
},
"dependencies": {
"apollo-server": "^2.0.5",
"apollo-server-koa": "^2.0.4",
"axios": "^0.18.0",
"bcrypt": "^3.0.0",
"bookshelf": "^0.13.3",
"bookshelf-uuid": "^1.0.0",
"dotenv": "^6.0.0",
"feedparser": "^2.2.9",
"graphql": "^0.13.2",
"graphql-tools": "^3.1.1",
"jsonwebtoken": "^8.3.0",
"knex": "^0.15.2",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-favicon": "^2.0.1",
"koa-logger": "^3.2.0",
"koa-passport": "^4.1.0",
"koa-router": "^7.4.0",
"koa-session": "^5.8.3",
"koa-static": "^5.0.0",
"koa-views": "^6.1.4",
"lodash": "^4.17.10",
"mysql": "^2.16.0",
"mysql2": "^1.6.1",
"passport-local": "^1.0.0",
"pug": "^2.0.3",
"qiniu": "^7.2.1",
"uuid": "^3.3.2"
},
"devDependencies": {}
}