-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.73 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@aedart/ion-monorepo",
"description": "Monorepo for JS / TS packages",
"keywords": [
"Ion",
"Library"
],
"author": "Alin Eugen Deac",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/aedart/ion/issues"
},
"homepage": "https://aedart.github.io/ion/",
"repository": {
"type": "git",
"url": "git+https://github.com/aedart/ion.git"
},
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": "^22.9.0"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-class-static-block": "^7.24.7",
"@babel/preset-env": "^7.25.4",
"@babel/runtime": "^7.25.6",
"@lerna-lite/changed": "^3.9.1",
"@lerna-lite/cli": "^3.9.1",
"@lerna-lite/list": "^3.9.1",
"@lerna-lite/publish": "^3.9.1",
"@lerna-lite/run": "^3.9.1",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vue/server-renderer": "^3.5.8",
"@vuepress/bundler-webpack": "^2.0.0-rc.15",
"@vuepress/plugin-back-to-top": "^2.0.0-rc.47",
"@vuepress/plugin-search": "^2.0.0-rc.47",
"@vuepress/theme-default": "^2.0.0-rc.49",
"babel-loader": "^9.2.1",
"cpx2": "^7.0.1",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"install": "^0.13.0",
"jasmine": "^5.3.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-spec-reporter": "^0.0.36",
"karma-webpack": "^5.0.1",
"npm": "^10.8.3",
"nx": "^19.8.2",
"prettier": "^3.3.3",
"puppeteer": "^23.4.1",
"rollup": "^4.22.4",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-vue": "^6.0.0",
"sass-loader": "^16.0.2",
"sass": "^1.79.3",
"style-loader": "^4.0.0",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"vuepress": "^2.0.0-rc.15",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"typescript-eslint": "^8.7.0"
},
"overrides": {
"karma-jasmine": {
"jasmine-core": "^5.3.0"
}
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean && sh clean.sh",
"build": "lerna run compile && sh clean.sh",
"compile": "lerna run compile && sh clean.sh",
"cache:clear": "npx nx reset",
"watch": "lerna run watch",
"lint": "eslint .",
"test": "lerna run compile && sh clean.sh && karma start shared/tests/karma-development.conf.js",
"test:prod": "lerna run compile && sh clean.sh && karma start shared/tests/karma-production.conf.js",
"docs:dev": "cross-env NODE_ENV=development vuepress dev docs --config docs/.vuepress/config.ts",
"docs:build": "cross-env NODE_ENV=development vuepress build docs --config docs/.vuepress/config.ts",
"docs:build-prod": "cross-env NODE_ENV=production vuepress build docs --config docs/.vuepress/config.ts"
},
"browserslist": [
"last 1 version",
"> 1%",
"not dead"
]
}