-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.77 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": "@tsparticles/presets-workspace",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "lerna run build",
"build:docs": "rimraf docs && typedoc --plugin typedoc-plugin-keywords --plugin typedoc-plugin-coverage",
"version:alpha": "lerna version prerelease --preid alpha --conventional-commits",
"version:beta": "lerna version prerelease --preid beta --conventional-commits",
"publish:alpha": "lerna publish from-package --pre-dist-tag alpha --preid alpha",
"publish:beta": "lerna publish from-package --pre-dist-tag beta --preid beta",
"publish:next": "lerna publish from-package --dist-tag next"
},
"license": "MIT",
"dependencies": {
"@babel/core": "^7.24.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@tsparticles/cli": "^2.3.3",
"@tsparticles/eslint-config": "^2.3.0",
"@tsparticles/prettier-config": "^2.1.6",
"@tsparticles/tsconfig": "^2.3.0",
"@tsparticles/webpack-plugin": "^2.3.0",
"@types/node": "^20.14.0",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"babel-loader": "^9.1.3",
"browserslist": "^4.23.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lerna": "^8.1.3",
"prettier": "^3.3.0",
"rimraf": "^5.0.7",
"terser-webpack-plugin": "^5.3.10",
"typedoc": "^0.25.13",
"typedoc-plugin-coverage": "^3.1.1",
"typedoc-plugin-keywords": "^1.6.0",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"workspaces": [
"apps/*",
"presets/*"
]
}