-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.83 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
{
"name": "thesocialconejito",
"description": "",
"version": "1.0.0",
"private": true,
"workspaces": [
"shared/**/*",
"packages/*",
"packages/theSocialConejito-server/functions"
],
"scripts": {
"clean": "lerna clean --yes && rimraf node_modules",
"clean:build": "lerna exec -- rimraf \"{.next,dist,out,build,.docz}\"",
"start:all": "lerna run --parallel start",
"start:social-cnjt": "yarn workspace thesocialconejito-client run start",
"build:social-cnjt": "yarn workspace thesocialconejito-client run build",
"test:social-cnjt": "yarn workspace thesocialconejito-client run test",
"deploy:social-cnjt": "yarn workspace thesocialconejito-client run build && yarn workspace thesocialconejito-client run deploy",
"deploy:functions": "yarn workspace functions run deploy",
"logs:social-cnjt-server": "yarn workspace functions run logs",
"serve:functions": "yarn workspace functions run serve",
"upgrade:social-cnjt": "yarn workspace thesocialconejito-client upgrade-interactive --latest",
"upgrade:functions": "yarn workspace functions upgrade-interactive --latest",
"start:and:serve": "yarn run start:social-cnjt && yarn run serve:functions",
"update:all": "lerna exec -- yarn upgrade --latest",
"deploy:all": "yarn run deploy:functions && yarn run deploy:social-cnjt",
"install:functions" : "yarn workspace functions install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md,css}": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
},
"devDependencies": {
"cross-env": "^6.0.0",
"husky": "^3.0.7",
"lerna": "^3.18.3",
"lint-staged": "^9.4.0",
"prettier": "^1.18.2",
"redux-devtools-extension": "^2.13.8",
"rimraf": "^3.0.0",
"serve": "^11.2.0"
}
}