-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.6 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
{
"name": "portfolio",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --mode development",
"build:dev": "webpack --mode development",
"build:prod": "webpack --mode production",
"start": "webpack serve",
"test": "jest",
"watch": "jest --watchAll=true",
"coverage": "jest --coverage --watchAll=false",
"test:json": "jest --json --watchAll=false --outputFile jest-output.json --coverage",
"lint": "eslint . --ext .ts",
"doc": "typedoc --entryPoints src",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier \"(src|test)/**/*\" --ignore-unknown"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@gsilber/webez": "^0.5.23",
"@types/node": "^20.11.25",
"copy-webpack-plugin": "^12.0.2",
"clean-webpack-plugin": "^4.0.0",
"html-webpack-plugin": "^5.6.0",
"css-loader": "^6.10.0",
"raw-loader": "^4.0.2",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"webpack-dev-server": "^5.0.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"ts-jest": "^29.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.46.0",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}