-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "component-elements",
"private": true,
"scripts": {
"install": "lerna exec -- yarn",
"clean": "lerna run clean",
"prebuild": "lerna bootstrap --no-ci",
"build": "run-s clean build:*",
"build:packages": "lerna run build",
"publish": "lerna publish",
"lint": "lerna run lint",
"test": "lerna run test"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"babel-jest": "^29.4.1",
"babel-loader": "^9.1.2",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"lerna": "^6.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
}
}