-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "monorepo-editor",
"scripts": {
"test": "jest --coverage",
"build": "webpack --config config/webpack.config.prod.js",
"dev": "webpack-dev-server --config config/webpack.config.dev.js",
"tree": "npx treer -d ./packages/ -i modelTestDemo -e tree.txt",
"jsdoc": "npx jsdoc -r -c jsdoc.config.json -R README.md -d deploy",
"deploy": "npm run build && npm run jsdoc",
"pack:core": "pnpm --filter @typex/core run build",
"pack:platform": "pnpm --filter @typex/platform run build",
"pack:editor": "pnpm --filter editor run build",
"pack": "npm run pack:core && npm run pack:platform && npm run pack:editor"
},
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"private": true,
"devDependencies": {
"babel-plugin-transform-typex-jsx": "workspace:^",
"@babel/preset-env": "^7.16.11",
"editor": "workspace:^",
"babel-loader": "^8.2.3",
"clean-jsdoc-theme": "^4.2.6",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.4.0",
"jest": "^27.5.1",
"jsdoc": "^4.0.2",
"style-loader": "^3.3.1",
"stylus": "^0.57.0",
"stylus-loader": "^6.2.0",
"treer": "^1.0.4",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0",
"webpackbar": "^5.0.0-3"
}
}