-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 959 Bytes
/
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
{
"name": "koa-faye",
"version": "1.0.0",
"description": "Creating a realtime chat with Koa + Faye + Nuxt",
"main": "server/index.js",
"directories": {
"test": "test"
},
"homepage": "https://github.com/lautiamkok",
"author": {
"name": "lau tiam kok",
"email": "contact@lauthiamkok.net",
"url": "https://github.com/lautiamkok"
},
"repository": "https://github.com/xxx.git",
"dependencies": {
"cross-env": "^5.0.1",
"faye": "^1.2.4",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-favicon": "^2.0.0",
"koa-static": "^4.0.1",
"nuxt": "^1.0.0-rc3"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"backpack-core": "^0.4.1"
},
"scripts": {
"dev": "backpack dev",
"build": "nuxt build && backpack build",
"start": "cross-env NODE_ENV=production node build/main.js"
},
"keywords": [
"Koa2",
"MongoDB",
"Socket.io",
"Nuxt"
],
"license": "MIT"
}