forked from reach4help/reach4help
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1007 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1007 Bytes
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
{
"name": "reach4help",
"private": true,
"workspaces": [
"map",
"site",
"web-client"
],
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"firebase-tools": "^7.16.2",
"husky": "^4.2.3"
},
"scripts": {
"firebase": "firebase",
"deploy:dev": "yarn workspaces run build && firebase deploy -P reach4help-dev",
"deploy:staging": "yarn workspaces run build && firebase deploy -P reach4help-staging",
"deploy:prod": "yarn workspaces run build && firebase deploy -P reach4help-34372",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"heroku-postbuild": "yarn workspace api run heroku-postbuild"
},
"husky": {
"hooks": {
"pre-commit": "yarn workspaces run pre-commit",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"resolutions": {
"@babel/preset-env": "^7.8.7"
},
"dependencies": {
"mini-css-extract-plugin": "0.9.0"
}
}