-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.64 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
{
"name": "frontend-compatibility-checker",
"version": "1.1.0",
"description": "雅诗浏览器前端兼容性检查器",
"main": "webpack.config.js",
"scripts": {
"build": "npm run lint && webpack --mode development",
"release": "npm run clean && npm run lint && webpack --mode production",
"serve": "npm run clean && npm run build && webpack-dev-server --mode development --host 127.0.0.1 --open",
"watch": "webpack --mode development --watch",
"debug": "npm run watch & http-server",
"clean": "rm -f index.html && rm -rf dist/*",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --ignore-pattern *.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miyabi-project/frontend-compatibility-checker.git"
},
"keywords": [
"typescript",
"template"
],
"author": "KagurazakaYashi",
"license": "MulanPSL-2.0",
"bugs": {
"url": "https://github.com/miyabi-project/frontend-compatibility-checker/issues"
},
"homepage": "https://github.com/miyabi-project/frontend-compatibility-checker#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.41.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint-plugin-import": "^2.26.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.1",
"mini-css-extract-plugin": "^2.6.1",
"progress-bar-webpack-plugin": "^2.1.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}