forked from noahss/clash-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.47 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "clash-dashboard",
"version": "0.1.0",
"description": "Web port of clash.",
"keywords": [
"clash",
"dashboard"
],
"author": "Dreamacro",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Dreamacro/clash-dashboard.git"
},
"bugs": {
"url": "https://github.com/Dreamacro/clash-dashboard/issues"
},
"homepage": "https://github.com/Dreamacro/clash-dashboard",
"scripts": {
"build": "npm run clean-dist && NODE_ENV=production webpack --config=configs/webpack/prod.js",
"clean-dist": "rm -rf dist",
"lint": "npm run lint:ts && npm run lint:sass",
"lint:ts": "eslint --ext=jsx,ts,tsx --fix src",
"lint:sass": "stylelint './src/**/*.scss'",
"start": "npm run start-dev",
"start-dev": "webpack-dev-server --config=configs/webpack/dev.js",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.10.1",
"@hot-loader/react-dom": "^16.13.0",
"@types/classnames": "^2.2.10",
"@types/lodash-es": "^4.17.3",
"@types/node": "^14.0.14",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/react-table": "^7.0.19",
"@types/react-virtualized-auto-sizer": "^1.0.0",
"@types/react-window": "^1.8.2",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"autoprefixer": "^9.8.4",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"babel-preset-minify": "^0.5.1",
"css-loader": "^3.6.0",
"eslint": "^7.3.1",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"image-webpack-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"offline-plugin": "^5.0.7",
"postcss-loader": "^3.0.0",
"react-hot-loader": "^4.12.21",
"sass": "^1.26.9",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.6.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "^2.1.0",
"terser-webpack-plugin": "^3.0.6",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2",
"webpack-pwa-manifest": "^4.2.0"
},
"dependencies": {
"axios": "^0.19.2",
"classnames": "^2.2.6",
"dayjs": "^1.8.28",
"eventemitter3": "^4.0.4",
"immer": "^7.0.5",
"lodash-es": "^4.17.15",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-table": "^7.2.1",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.8.5",
"recoil": "0.0.10",
"swr": "^0.2.3",
"use-immer": "^0.4.0"
}
}