-
Notifications
You must be signed in to change notification settings - Fork 461
/
Copy pathpackage.json
75 lines (75 loc) · 2.51 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
{
"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 && webpack -p --config=configs/webpack/prod.js",
"clean-dist": "rm -f -r -d dist",
"lint": "npm run lint:ts && npm run lint:sass",
"lint:ts": "tslint './src/**/*.ts*' --format stylish --force",
"lint:sass": "stylelint ./src/**/*.scss",
"start": "npm run start-dev",
"start-dev": "webpack-dev-server --config=configs/webpack/dev.js"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@types/node": "^10.9.4",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.7",
"@types/react-i18next": "^7.8.2",
"@types/react-router-dom": "^4.3.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.3.1",
"react-addons-test-utils": "^15.6.2",
"react-hot-loader": "^4.3.7",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"stylelint": "^9.5.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-webpack-plugin": "^0.10.5",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"uglifyjs-webpack-plugin": "^2.0.0",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.3.0",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"classnames": "^2.2.6",
"i18next": "^11.9.0",
"i18next-browser-languagedetector": "^2.2.3",
"ini": "^1.3.5",
"mobx": "^5.1.1",
"mobx-react": "^5.2.8",
"mobx-react-router": "^4.0.5",
"node-sass": "^4.9.3",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-i18next": "^7.12.0",
"react-router-dom": "^4.3.1",
"typescript": "^3.0.3"
}
}