-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.55 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "deliverease",
"version": "1.0.0",
"description": "We connect helpful volunteers with individuals who have a hard time accessing food and other essentials.",
"repository": "https://github.com/shaibruhis/DeliverEase",
"license": "UNLICENSED",
"private": true,
"main": "dist/server/index.js",
"scripts": {
"dev": "FIREBASE_ENV=local npm run watch:client & npm run watch:server",
"start": "FIREBASE_ENV=local npm run build && NODE_ENV=production npm run start:emulators",
"test": "firebase emulators:exec --only database 'mocha --timeout=10000'",
"deploy": "npm run clean && npm run build:staging && NODE_ENV=production firebase deploy -P staging --only functions,hosting",
"deploy:prod": "npm run clean && npm run build:prod && NODE_ENV=production firebase deploy -P production --only functions,hosting",
"grant-admin": "node scripts/userRoles/grantAdminRole.js",
"revoke-admin": "node scripts/userRoles/revokeAdminRole.js",
"start:emulators": "NODE_ENV=production firebase emulators:start",
"build:client": "next build src/client",
"build:server": "babel src/server --out-dir dist/server --source-maps",
"build:public": "cpx \"src/client/public/**/*.*\" \"dist/public\" -C",
"build": "npm run build:client && npm run build:server && npm run build:public",
"build:staging": "FIREBASE_ENV=staging npm run build",
"build:prod": "FIREBASE_ENV=production npm run build",
"watch:client": "NODE_OPTIONS='--inspect' next dev src/client",
"watch:server": "babel src/server --out-dir dist/server --source-maps --watch",
"clean": "rimraf dist/"
},
"engines": {
"node": "10"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"@fortawesome/react-fontawesome": "^0.1.9",
"@googlemaps/google-maps-services-js": "^2.6.0",
"@googlemaps/js-api-loader": "^1.0.0",
"@hapi/joi": "^17.1.1",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase": "^7.14.2",
"firebase-admin": "^8.6.0",
"firebase-functions": "^3.6.1",
"formik": "^2.1.4",
"google-map-react": "^1.1.7",
"joi-phone-number": "^4.1.0",
"lodash": "^4.17.15",
"monday-sdk-js": "0.0.13",
"next": "9.4.4",
"nodemailer": "^6.4.6",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.8.6",
"react-firebaseui": "^4.1.0",
"react-phone-number-input": "^3.0.22",
"react-select": "^3.1.0",
"sass": "^1.26.5"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@firebase/testing": "^0.19.2",
"cpx": "^1.5.0",
"cross-env": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"firebase-functions-test": "^0.1.6",
"firebase-tools": "^7.16.2",
"husky": "^4.2.3",
"lint-staged": "^10.0.10",
"mocha": "^7.1.2",
"prettier": "^2.0.2",
"rimraf": "^2.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,css,scss,html,md}": "prettier --write",
"*.js": [
"eslint",
"prettier --write"
]
}
}