-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
82 lines (82 loc) · 2.97 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"private": true,
"engines": {
"node": ">=14"
},
"packageManager": "yarn@3.6.0",
"scripts": {
"clean": "rimraf --glob '{e2e-projects/*/{.next,.svelte-kit},packages/*/{.next,.svelte-kit,build,coverage,dist,out,package.tgz,src/**/*.module.css.d.ts,storybook-static},playwright/{playwright-report,test-results}}'",
"dev": "concurrently --prefix-colors auto \"yarn:dev:*\"",
"dev:manager": "yarn workspace @slicemachine/manager dev",
"dev:start-slicemachine": "yarn workspace start-slicemachine dev",
"dev:plugin-kit": "yarn workspace @slicemachine/plugin-kit dev",
"dev:slice-machine-ui": "yarn workspace slice-machine-ui dev",
"dev:adapter-next": "yarn workspace @slicemachine/adapter-next dev",
"dev:adapter-sveltekit": "yarn workspace @slicemachine/adapter-sveltekit dev",
"dev:init": "yarn workspace @slicemachine/init dev",
"dev:e2e-next": "cd ./e2e-projects/next && yarn dev --port 8000",
"clean-e2e-projects": "git checkout e2e-projects/ && git clean -f e2e-projects/",
"postinstall": "husky install",
"build": "yarn workspaces foreach --topological-dev --verbose run build && yarn run test",
"build-essential": "yarn workspace @slicemachine/plugin-kit build && yarn workspace @slicemachine/manager build",
"audit": "yarn workspaces foreach --parallel --verbose run audit",
"lint": "yarn workspaces foreach --verbose run lint",
"stylelint": "yarn workspaces foreach --verbose run stylelint",
"lint-staged": "lint-staged",
"prettier:fix": "prettier --write .",
"prettier:check": "prettier --check .",
"test": "yarn workspaces foreach --parallel --topological-dev --verbose run test",
"publish": "tsx scripts/publish.ts",
"play": "tsx scripts/play.ts",
"yalc:editor-packages": "tsx scripts/yalc-sm.ts"
},
"dependenciesMeta": {
"@sentry/cli": {
"built": true
},
"esbuild": {
"built": true
},
"msw": {
"built": true
}
},
"devDependencies": {
"@types/semver": "7.3.13",
"chalk": "4.1.2",
"concurrently": "7.6.0",
"eslint-plugin-simple-import-sort": "12.0.0",
"execa": "7.1.1",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"mri": "1.2.0",
"prettier": "3.0.3",
"rimraf": "5.0.5",
"semver": "7.3.8",
"start-server-and-test": "1.15.5",
"tsx": "4.6.2"
},
"lint-staged": {
"**/packages/slice-machine/**/*.@(js|jsx|ts|tsx|)": [
"prettier --write --ignore-unknown",
"yarn workspace slice-machine-ui lint:precommit"
],
"**/packages/slice-machine/**/*.module.css": [
"prettier --write --ignore-unknown",
"yarn workspace slice-machine-ui stylelint:precommit"
]
},
"resolutions": {
"connected-next-router/react-redux": "8.0.7",
"react-beautiful-dnd/react-redux": "8.0.7",
"@prismicio/types-internal": "2.8.0",
"express": "4.20.0"
},
"workspaces": [
"e2e-projects/next",
"e2e-projects/sveltekit",
"e2e-projects/next-upgrade",
"playwright",
"packages/*"
]
}