-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 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
55
56
{
"name": "new-tool",
"private": true,
"workspaces": [
"libs/*",
"apps/*"
],
"scripts": {
"build:erm-js": "npm run build --workspace=@new-tool/erm-js",
"build:erm-moddle": "npm run build --workspace=@new-tool/erm-moddle",
"build:build-check": "npm run build --workspace=@new-tool/build-check",
"start": "npm run start:build-check",
"start:build-check": "npm run start --workspace=@new-tool/build-check",
"test:erm-js": "npm run test --workspace=@new-tool/erm-js",
"test:erm-moddle": "npm run test --workspace=@new-tool/erm-moddle",
"test": "npm run test --workspaces --if-present",
"lint": "npx eslint .",
"format": "npx prettier . --write"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-syntax-import-attributes": "7.26.0",
"@babel/preset-env": "7.26.0",
"@eslint/js": "9.16.0",
"@types/chai": "5.0.1",
"@types/chai-as-promised": "8.0.1",
"@types/mocha": "10.0.10",
"babel-loader": "9.2.1",
"chai": "5.1.2",
"chai-as-promised": "8.0.1",
"copy-webpack-plugin": "12.0.2",
"css-loader": "7.1.2",
"eslint": "9.16.0",
"globals": "15.13.0",
"html-webpack-plugin": "5.6.3",
"karma": "6.4.4",
"karma-chai-plugins": "0.9.0",
"karma-chrome-launcher": "3.2.0",
"karma-mocha": "2.0.1",
"karma-sinon": "1.0.5",
"karma-sinon-chai": "2.0.2",
"karma-webpack": "5.0.1",
"mini-css-extract-plugin": "2.9.2",
"mocha": "11.0.1",
"mocha-test-container-support": "0.2.0",
"prettier": "3.4.2",
"sinon": "19.0.2",
"sinon-chai": "4.0.0",
"style-loader": "4.0.0",
"webpack": "5.97.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0",
"webpack-node-externals": "3.0.0"
}
}