-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1002 Bytes
/
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
{
"scripts": {
"release": "webpack-cli --mode production --progress --config env/webpack.config.js",
"build": "webpack-cli --progress --config env/webpack.config.js",
"watch": "webpack-cli -w --config env/webpack.config.js",
"test": "jest --config env/jest.config.js",
"coverage": "jest --coverage --config env/jest.config.js"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"clean-webpack-plugin": "*",
"comlink-loader": "^2.0.0",
"eslint": "^7.25.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-the-framework": "file:env",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"terser-webpack-plugin": "^5.1.1",
"ts-jest": "^26.5.5",
"ts-loader": "^9.1.1",
"typescript": "^4.2.4",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}
}