-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.21 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.21 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
{
"name": "the-codec",
"packageManager": "yarn@4.3.1",
"private": true,
"workspaces": [
"core",
"service/*",
"source/*",
"playground/*"
],
"scripts": {
"core": "yarn workspace core",
"design": "yarn workspace @source/design",
"module": "yarn workspace @source/module",
"app": "yarn workspace @service/app",
"demo": "yarn workspace @service/demo",
"editor": "yarn workspace @playground/editor",
"ssg": "yarn workspace @playground/static-site-generation",
"graphics": "yarn workspace @playground/graphics",
"tree": "yarn workspace @playground/tree-shaking",
"deploy": "yarn workspace @service/app generate",
"format": "yarn prettier --write .",
"upgrade:flexive": "yarn app add @flexive/core@latest && yarn design add @flexive/core@latest && yarn module add @flexive/core@latest && yarn demo add @flexive/core@latest && yarn app add @flexive/operator@latest && yarn design add @flexive/operator@latest && yarn module add @flexive/operator@latest && yarn demo add @flexive/operator@latest",
"prepare": "husky && echo 'yarn app build' > .husky/pre-commit"
},
"devDependencies": {
"eslint": "^8.57.0",
"husky": "^9.1.7",
"prettier": "^3.2.5"
}
}