forked from StaticJsCMS/static-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.27 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
{
"name": "static-cms",
"private": true,
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"build": "lerna run build --scope @staticcms/core --scope @staticcms/app",
"build:demo": "lerna run build --scope @staticcms/demo",
"build:docs": "cd packages/docs && yarn build",
"dev": "lerna run dev --scope @staticcms/core",
"demo": "lerna run dev --scope @staticcms/demo",
"docs": "lerna run dev --scope @staticcms/docs",
"format": "lerna run format",
"lint": "lerna run lint",
"prepare": "husky install",
"release": "lerna publish --no-private",
"release-dev": "lerna publish --no-private --no-push --no-git-tag-version --dist-tag dev",
"release-next": "lerna publish --no-private --dist-tag next",
"test:ci": "lerna run test:ci",
"test:integration:ci": "lerna run test:integration:ci",
"test:integration": "lerna run test:integration",
"test": "lerna run test",
"type-check": "lerna run type-check --scope @staticcms/core"
},
"devDependencies": {
"all-contributors-cli": "6.24.0",
"husky": "8.0.3",
"lerna": "6.6.1",
"lint-staged": "13.2.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"workspaces": [
"packages/*"
]
}