-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 996 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
33
34
{
"name": "www.leonyu.net",
"version": "0.0.2",
"author": "Leon Yu <[email protected]>",
"description": "www.leonyu.net",
"private": true,
"dependencies": {
"qrcode": "^1.5.4"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/eslint__js": "^8.42.3",
"@types/qrcode": "^1.5.5",
"cspell": "^8.17.1",
"eslint": "^9.16.0",
"eslint-plugin-jest": "^28.10.0",
"html-minifier-terser": "^7.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"scripts": {
"build": "html-minifier-terser --input-dir public/ -c html-minifier.conf --output-dir dist/ && webpack",
"lint": "cspell 'src/**/*.ts' 'public/**/*' && stylelint public/css && eslint '**/*.ts'",
"test": "jest"
}
}