-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.79 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
53
54
55
56
57
58
59
{
"name": "lobbster",
"version": "1.0.0",
"description": "Lobbster is an open-source project to help lobbyists comply with reporting requirements for the City of Coral Gables.",
"main": "index.js",
"engines": {
"node": "8.9.4",
"npm": "5.7.1"
},
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"install-dev": "npm install && npm install --prefix client",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Code-for-Miami/lobbster.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Code-for-Miami/lobbster/issues"
},
"homepage": "https://github.com/Code-for-Miami/lobbster#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"@fortawesome/free-solid-svg-icons": "^5.3.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"axios": "^0.18.0",
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"bulma": "^0.7.1",
"bulma-tooltip": "^2.0.2",
"concurrently": "^3.6.1",
"connect-mongodb-session": "^2.0.3",
"express": "^4.16.3",
"express-session": "^1.15.6",
"i": "^0.3.6",
"lodash": "^4.17.11",
"mongoose": "^5.2.14",
"nodemon": "^1.18.9",
"npm": "^6.4.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react-router-dom": "^4.3.1",
"stripe": "^6.12.1",
"winston": "^3.1.0"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1"
}
}