-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "what-the-fac-is-for-dinner",
"version": "1.0.0",
"description": "A web app to help us plan our community dinner!",
"main": "./public/index.js",
"scripts": {
"test": "NODE_ENV=test tape ./src/tests/test.js | tap-spec",
"start": "node src/server.js",
"dev": "nodemon src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-12/What-the-FAC-is-for-dinner.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-12/What-the-FAC-is-for-dinner/issues"
},
"homepage": "https://github.com/fac-12/What-the-FAC-is-for-dinner#readme",
"devDependencies": {
"eslint": "^4.12.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"istanbul": "^0.4.5",
"nodemon": "^1.12.1",
"shot": "^3.4.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie": "^0.3.1",
"env2": "^2.2.0",
"jsonwebtoken": "^8.1.0",
"pg": "^7.4.0",
"url": "^0.11.0"
}
}