-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 934 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
42
{
"name": "paipo",
"version": "0.3.0",
"description": "A Koa.js and Postgres Web App Prototype",
"repository": {
"type": "git",
"url": "https://github.com/jwrg/paipo.git"
},
"main": "index.js",
"dependencies": {
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"@koa/ejs": "^5.0.0",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"koa-tree-router": "^0.12.0",
"pg": "^8.9.0"
},
"devDependencies": {
"chai": "*",
"chai-as-promised": "*",
"grunt": "*",
"grunt-contrib-jshint": "*",
"grunt-contrib-watch": "*",
"grunt-mocha-test": "*",
"grunt-simple-nyc": "*",
"mocha": "*",
"rewire": "*",
"nodemon": "*",
"puppeteer": "*",
"nyc": "*",
"puppeteer-to-istanbul": "*"
},
"scripts": {
"grunt": "grunt ",
"server": "DEBUG=koa* nodemon --inspect index.js"
},
"engines": {
"node": ">= 7.6.0",
"npm": ">= 3.0.0"
}
}