-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 902 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
31
32
{
"license": "MIT",
"type": "module",
"scripts": {
"format": "prettier --write ./*.mjs src",
"format-check": "prettier --check ./*.mjs src",
"test": "jest ./*",
"watch": "jest --watch ./*",
"lint": "eslint . && tsc --noEmit -p .",
"build": "webpack",
"ci": "npm run format-check && npm run lint && npm run test && npm run build"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/jest": "^29.5.13",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-mock-random": "^1.1.1",
"prettier": "3.3.3",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-mockito": "^2.6.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {}
}