This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
50 lines (50 loc) · 1.93 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": "static-cms",
"private": true,
"scripts": {
"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",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"demo": "lerna run dev --scope @staticcms/demo",
"dev": "lerna run dev --scope @staticcms/core",
"docs": "lerna run dev --scope @staticcms/docs",
"format:prettier": "prettier \"cypress/**/*.{js,jsx,ts,tsx,css}\" --write",
"format": "lerna run format && yarn format:prettier",
"lint:format": "prettier \"cypress/**/*.{js,jsx,ts,tsx,css}\" --list-different",
"lint": "lerna run lint && yarn lint:format",
"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",
"sync-locales": "lerna run sync-locales --scope @staticcms/tools",
"test": "lerna run test",
"test:ci": "lerna run test:ci",
"test:e2e": "cypress run --browser chrome --headed",
"test:e2e:headless": "cypress run --browser chrome --headless",
"test:integration:ci": "lerna run test:integration:ci",
"test:integration": "lerna run test:integration",
"type-check": "lerna run type-check --scope @staticcms/core"
},
"devDependencies": {
"@simonsmith/cypress-image-snapshot": "9.0.1",
"@types/mocha": "10.0.6",
"all-contributors-cli": "6.26.1",
"cypress-plugin-tab": "1.0.5",
"cypress-real-events": "1.11.0",
"cypress": "13.6.2",
"execa": "8.0.1",
"husky": "8.0.3",
"lerna": "8.0.1",
"lint-staged": "15.2.0",
"react-dom": "18.2.0",
"react": "18.2.0",
"rehype": "13.0.1",
"unist-util-visit": "5.0.0"
},
"workspaces": [
"packages/*"
],
"dependencies": {}
}