-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 loc) · 1.46 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
47
48
49
50
51
52
{
"name": "paw-wars",
"version": "0.3.0",
"description": "A modern take on Drugwars (Dopewars), but with cats.",
"main": "index.js",
"scripts": {
"start": "nodemon --ignore './assets' -e js,hbs ./index.js & nodemon -e scss --watch './assets/css/_src' --exec 'npm run compile'",
"production": "node index.js",
"compile": "node-sass './assets/css/custom.scss' './assets/css/custom.css'",
"test": "mocha ./tests/ && eslint .",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snollygolly/paw-wars.git"
},
"keywords": [
"paw-wars",
"drugwars",
"dopewars"
],
"author": "snollygolly (@snollygolly)",
"license": "ISC",
"bugs": {
"url": "https://github.com/snollygolly/paw-wars/issues"
},
"homepage": "https://github.com/snollygolly/paw-wars#readme",
"dependencies": {
"bluebird": "^3.5.2",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-generic-session": "^2.0.1",
"koa-hbs": "^1.0.0",
"koa-mount": "^3.0.0",
"koa-passport": "^4.0.1",
"koa-router": "^7.2.1",
"koa-static": "^4.0.1",
"marked": "^0.7.0",
"mongodb": "^3.2.7",
"passport-auth0": "^1.0.0",
"winston": "^3.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.9.0",
"mocha": "^8.1.3",
"mocha-junit-reporter": "^1.17.0",
"node-sass": "^4.13.1",
"nodemon": "^2.0.4",
"nyc": "^14.1.1"
}
}