-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
54 lines (54 loc) · 1.96 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
{
"name": "@easydata/root",
"private": true,
"workspaces": [
"easydata.js/packs/*",
"easydata.js/bundles/*",
"playground/*"
],
"scripts": {
"clean": "lerna clean",
"test": "lerna run test",
"watch": "lerna run build --scope=@easydata/* && lerna watch --scope=@easydata/* -- lerna run build --scope=%LERNA_PACKAGE_NAME% --include-dependents",
"watch:core": "lerna run watch --scope=@easydata/core",
"watch:crud": "lerna run watch --scope=@easydata/crud",
"watch:ui": "lerna run watch --scope=@easydata/ui",
"watch:bundle": "lerna run watch --scope=@easydata/bundle-crud",
"rebuild": "nx reset && lerna run build",
"build": "lerna run build",
"build:core": "lerna run build --scope=@easydata/core",
"build:crud": "lerna run build --scope=@easydata/crud",
"build:ui": "lerna run build --scope=@easydata/ui",
"build:bundle": "lerna run build --scope=@easydata/bundle-crud",
"build:demo1": "lerna run build --scope=demo1",
"build:demo2": "lerna run build --scope=demo2",
"dev": "lerna run watch --parallel --scope=@easydata/*",
"setver": "node ./easydata.js/tools/set_version.js"
},
"devDependencies": {
"@olton/rollup-plugin-typedoc": "^0.1.4",
"@rollup/plugin-buble": "^1.0.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@testing-library/jest-dom": "^6.4.2",
"@types/jsdom": "^21.1.6",
"@vitest/ui": "^1.2.2",
"autoprefixer": "^10.4.16",
"copyfiles": "^2.4.1",
"jsdom": "^24.0.0",
"lerna": "^8.0.1",
"rollup": "^4.9.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-no-emit": "^1.1.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-progress": "^1.1.2",
"shx": "^0.3.4",
"tslib": "^2.6.2",
"typedoc": "^0.25.6",
"typescript": "^5.3.3",
"vitest": "^1.1.1"
}
}