-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "meatstick",
"version": "1.0.0",
"description": "A simplistic router-based joke game. Fun for the whole family except mostly just for dad.",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"mocha": "mocha --recursive",
"test": "npm run mocha",
"test:watch": "npm run mocha -- -w",
"start": "node server.js",
"start:watch": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meatstickpdx/meatstick"
},
"authors": "Victor Bofill <victorm.bofill@gmail.com>, Stephanie Smith <stephanie.lauren.design@gmail.com>, Katlyn Tucker <studioquirk@yahoo.com>, Jen Lipton <jkl.lipton@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/meatstickpdx/meatstick/issues"
},
"homepage": "https://github.com/meatstickpdx/meatstick#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"heroku-ssl-redirect": "0.0.4",
"jsonwebtoken": "^8.2.1",
"mongoose": "^5.0.16",
"morgan": "^1.9.0",
"validator": "^9.4.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"eslint": "^4.19.1",
"mocha": "^5.1.1",
"nodemon": "^1.17.3"
}
}