-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 KB
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
{
"private": true,
"scripts": {
"format": "npm run prettier -- --write",
"prettier": "prettier \"**/*.+(js|jsx|ts|tsx|json|yml|yaml|md|mdx|graphql)\"",
"prettier:validate": "npm run prettier -- --list-different",
"precommit": "lint-staged",
"build:web": "npx lerna run build --scope={@splitshare/web}",
"build:server": "lerna run build --scope={@splitshare/server}",
"app:start": "lerna --scope=app run start --stream --",
"lint": "npx lerna run lint --scope={@splitshare/web,@splitshare/server}",
"test": "lerna run test --scope={@splitshare/web,@splitshare/server}",
"clean": "rimraf node_modules && lerna run clean",
"version": "lerna version --conventional-commits --changelog-preset angular-bitbucket",
"deploy:web": "netlify deploy --prod -d ./packages/web/build"
},
"lint-staged": {
"**/*.+(js|jsx|ts|tsx|json|yml|yaml|md|mdx|graphql)": [
"yarn format",
"git add"
]
},
"devDependencies": {
"husky": "1.3.1",
"lerna": "3.13.1",
"lint-staged": "8.1.5",
"prettier": "1.19.1"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/jest",
"**/jest/**"
]
}
}