forked from react-static/react-static
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 824 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 824 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
{
"private": true,
"scripts": {
"releaseNext": "lerna publish prerelease --preid beta --dist-tag next",
"release": "lerna publish",
"releaseForce": "lerna publish --force-publish react-static",
"build": "lerna run 'build'",
"watch": "lerna run 'watch' --parallel",
"start": "yarn watch",
"startDocs": "cd www && yarn && yarn start",
"buildDocs": "cd www && yarn && yarn build",
"serveDocs": "serve www/dist -p 3000",
"test": "yarn format && lerna run test",
"format": "prettier docs/** --write && lerna run format --stream",
"precommit": "yarn format && git add",
"ci": "yarn build && yarn test"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^3.6.0"
}
}