-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
37
38
39
40
41
42
43
44
45
46
{
"name": "koa-skeleton-nuxt",
"version": "1.0.0",
"description": "ES6 Koa2 + MongoDB + Nuxt + Socket.io",
"main": "server/index.js",
"directories": {
"test": "test"
},
"homepage": "https://github.com/lautiamkok",
"author": {
"name": "lau tiam kok",
"email": "[email protected]",
"url": "https://github.com/lautiamkok"
},
"repository": "https://github.com/lautiamkok/koa-modular.git",
"dependencies": {
"cross-env": "^5.2.0",
"koa": "^2.5.3",
"koa-bodyparser": "^4.2.1",
"koa-favicon": "^2.0.1",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"koa-trie-router": "^2.1.6",
"lodash": "^4.17.11",
"mongodb": "^2.2.33",
"uuid": "^3.3.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-preset-es2015": "^6.24.1",
"backpack-core": "^0.7.0",
"mocha": "^5.2.0",
"supertest": "^3.3.0"
},
"scripts": {
"test": "cross-env NODE_PATH=./server:./server/modules:./server/core NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
"dev": "backpack dev",
"build": "backpack build",
"start": "cross-env NODE_ENV=production node build/main.js"
},
"keywords": [
"Koa2",
"MongoDB"
],
"license": "MIT"
}