-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.61 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
{
"name": "magicspace-packages",
"private": true,
"repository": "https://github.com/makeflow/magicspace.git",
"license": "MIT",
"author": "Chengdu Mufan Technology Co., Ltd.",
"type": "module",
"scripts": {
"3": "yarn && yarn-deduplicate && yarn",
"build": "rimraf --glob packages/*/bld && tsc --build",
"lint": "eslint --no-error-on-unmatched-pattern --report-unused-disable-directives . && run-in-every eslint-project --parallel --echo -- eslint --no-error-on-unmatched-pattern --report-unused-disable-directives .",
"lint-prettier": "prettier --check .",
"bare-test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test": "yarn lint-prettier && yarn build && yarn lint && yarn bare-test",
"lerna:publish": "lerna publish patch --registry=https://registry.npmjs.org",
"boilerplate-url": "yarn workspace @magicspace/boilerplate-url",
"boilerplate-url-resolver": "yarn workspace @magicspace/boilerplate-url-resolver",
"core": "yarn workspace @magicspace/core",
"utils": "yarn workspace @magicspace/utils",
"magicspace": "yarn workspace magicspace"
},
"workspaces": [
"packages/boilerplate-url",
"packages/boilerplate-url-resolver",
"packages/core",
"packages/utils",
"packages/cli"
],
"devDependencies": {
"@mufan/eslint-plugin": "^0.2.14",
"@types/jest": "^29.5.7",
"@types/node": "^18.13.0",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"lerna": "^7.3.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"run-in-every": "^0.2.0",
"typescript": "^5.2.2",
"yarn-deduplicate": "^6.0.2"
}
}