-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
85 lines (85 loc) · 2.93 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "timer",
"version": "2.5.2",
"description": "Time tracker",
"homepage": "https://www.wfhg.cc",
"scripts": {
"dev": "webpack --config=webpack/webpack.dev.ts --watch",
"dev:firefox": "webpack --config=webpack/webpack.dev.firefox.ts --watch",
"dev:safari": "webpack --config=webpack/webpack.dev.safari.ts --watch",
"build": "webpack --config=webpack/webpack.prod.ts",
"build:firefox": "webpack --config=webpack/webpack.prod.firefox.ts",
"build:safari": "webpack --config=webpack/webpack.prod.safari.ts",
"analyze": "webpack --config=webpack/webpack.analyze.ts",
"test": "jest --env=jsdom",
"test-c": "jest --coverage --env=jsdom"
},
"author": {
"name": "zhy",
"email": "[email protected]",
"url": "https://www.github.com/sheepzh"
},
"repository": {
"url": "https://github.com/sheepzh/timer"
},
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@crowdin/crowdin-api-client": "^1.39.0",
"@types/chrome": "0.0.280",
"@types/copy-webpack-plugin": "^10.1.3",
"@types/decompress": "^4.2.7",
"@types/echarts": "^4.9.22",
"@types/generate-json-webpack-plugin": "^0.3.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.7",
"@types/psl": "^1.1.3",
"@types/punycode": "^2.1.4",
"@types/webpack": "^5.28.5",
"@types/webpack-bundle-analyzer": "^4.7.0",
"@vue/babel-plugin-jsx": "^1.2.5",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"decompress": "^4.2.1",
"eslint": "^9.14.0",
"filemanager-webpack-plugin": "^8.0.0",
"generate-json-webpack-plugin": "^2.0.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"postcss-rtlcss": "^5.5.0",
"sass": "^1.80.6",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "5.6.3",
"url-loader": "^4.1.1",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@vueuse/core": "^11.2.0",
"countup.js": "^2.8.0",
"echarts": "^5.5.1",
"element-plus": "2.8.7",
"js-base64": "^3.7.7",
"punycode": "^2.3.1",
"stream-browserify": "^3.0.0",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"engines": {
"node": ">=20"
}
}