-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 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
39
40
41
42
43
{
"private": true,
"workspaces": [
"packages/*",
"www/*"
],
"scripts": {
"clean": "rimraf packages/*/dist",
"start": "yarn clean && yarn start:cra",
"start:cra": "yarn workspace netlify-cms-starter start",
"serve:build": "serve -s packages/netlify-cms-starter/build",
"build:backend": "yarn workspace netlify-cms-backend-firestore build",
"build:starter": "yarn workspace netlify-cms-starter build",
"build": "yarn build:backend",
"release": "yarn changeset publish"
},
"dependencies": {
"@changesets/cli": "^2.11.2"
},
"devDependencies": {
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Opera versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Safari versions",
"last 2 iOS versions",
"last 2 ChromeAndroid versions"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}