-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 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
60
{
"name": "cofed",
"version": "1.0.0",
"repository": "https://github.com/codebase-berkeley/cofed.git",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.9.1",
"aws-sdk": "^2.804.0",
"axios": "^0.21.0",
"bcrypt": "^5.0.0",
"bluebird": "^3.7.2",
"connect-pg-simple": "^6.2.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"express-session": "^1.17.1",
"google-auth-library": "^6.1.3",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"passport-google-oauth2": "^0.2.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"pg": "^8.4.2",
"pg-format": "^1.0.4",
"qs": "^6.9.4",
"query-string": "^6.13.7",
"react-dropzone": "^11.2.4",
"react-places-autocomplete": "^7.3.0",
"react-select": "3.0.4",
"react-toggle": "^4.1.1",
"shards-react": "^1.0.3"
},
"scripts": {
"start": "node app.js",
"dev": "concurrently \"yarn client\" \"yarn server\" \"yarn db\"",
"client": "cd client && yarn start",
"server": "nodemon app.js",
"predb": "psql -f db/cofed.sql -U postgres && psql cofed < node_modules/connect-pg-simple/table.sql",
"db": "psql cofed",
"lint": "eslint --fix client/src api/ db/",
"lint-check": "eslint client/src api/ db/",
"prod": "yarn build && NODE_ENV=production node app.js",
"postinstall": "cd client && yarn install",
"build": "cd client && yarn build",
"heroku-postbuild": "yarn install && yarn build"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "^5.3.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"nodemon": "^2.0.6",
"prettier": "^2.1.2"
}
}