-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
91 lines (91 loc) · 3.14 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
{
"name": "cc98-pwa",
"version": "1.0.0",
"description": "CC98 Forum PWA version.",
"author": "Hydrogen",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development NODE_OPTIONS=--openssl-legacy-provider webpack-dev-server --config config/webpack.dev.js --progress --hot",
"build": "cross-env NODE_ENV=production NODE_OPTIONS=--openssl-legacy-provider webpack --config config/webpack.prod.js",
"bundle-analyze": "cross-env NODE_ENV=production NODE_OPTIONS=--openssl-legacy-provider webpack --config config/webpack.bundle-analyze.js",
"type-check": "tsc --noEmit",
"beautify-all": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint-fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"reinstall_dep": "npx rimraf package-lock.json node_modules && npm i"
},
"lint-staged": {
"**/*.{ts,tsx,css}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@aspnet/signalr": "^1.1.4",
"@cc98/ubb-core": "1.1.0",
"@material-ui/core": "^4.0.0-beta.2",
"@material-ui/icons": "^4.0.0-beta.0",
"@material-ui/styles": "^4.0.0-beta.2",
"@reach/router": "^1.2.1",
"aplayer": "^1.10.1",
"copy-to-clipboard": "^3.1.0",
"cropperjs": "^1.5.1",
"dayjs": "^1.8.13",
"dplayer": "^1.25.0",
"lodash-es": "^4.17.11",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-spring": "^8.0.19",
"remark": "^10.0.1",
"remark-react": "^5.0.1",
"styled-components": "^4.2.0",
"typeface-roboto": "^0.0.54",
"url-parse": "^1.4.7"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/lodash-es": "^4.17.3",
"@types/node": "^11.13.8",
"@types/reach__router": "^1.2.4",
"@types/react": "^16.8.15",
"@types/react-cropper": "^0.10.5",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^4.1.14",
"@types/url-parse": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"babel-plugin-transform-imports": "^1.5.1",
"clean-webpack-plugin": "^2.0.1",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-alloy": "^1.4.2",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-react-hooks": "^1.6.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^4.0.0-beta.5",
"husky": "^2.1.0",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.3",
"typescript": "^3.4.5",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1",
"workbox-webpack-plugin": "^4.3.0"
}
}