-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "fewd",
"version": "1.0.0",
"description": "Allows users to share their favorite recipes, as well as their leftovers for said recipes.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix .",
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm run start --prefix client",
"build:client": "npm run build --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Rock Zhou & Lee Ma",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.259.1",
"bcrypt": "^1.0.3",
"body-parser": "^1.18.2",
"concurrently": "^3.5.1",
"cookie-session": "^2.0.0-beta.3",
"express": "^4.16.2",
"formik": "^0.11.11",
"moment": "^2.22.2",
"mongoose": "^5.0.7",
"multer": "^1.3.0",
"multer-s3": "^2.7.0",
"nodemon": "^1.15.1",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"pg": "^7.4.3",
"query-string": "^6.2.0",
"react-dropzone": "^4.2.10",
"react-scripts": "^1.1.4",
"react-sticky-box": "^0.6.4",
"sequelize": "^4.38.1"
},
"devDependencies": {
"eslint-plugin-jsx-a11y": "^6.1.1"
}
}