-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.52 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
{
"name": "openvpn-access-frontend",
"private": true,
"version": "0.0.0",
"description": "",
"main": "src/index.js",
"author": "Simon Reinisch <[email protected]>",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.dev.js",
"lint:ts": "eslint src/**/*.{js,ts,tsx}",
"lint:ts:fix": "eslint src/**/*.{js,ts,tsx} --fix",
"lint:types": "tsc --project tsconfig.json --noEmit",
"lint:fix": "npm run lint:ts:fix && npm run lint:types"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/react": "^16.9.48",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.4",
"cross-env": "^7.0.2",
"css-loader": "^4.2.2",
"deepmerge": "^4.2.2",
"eslint": "^7.7.0",
"eslint-config-simon": "^2.1.0",
"eslint-plugin-react": "^7.20.6",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.11.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"progress-bar-webpack-plugin": "^2.1.0",
"react-refresh": "^0.8.3",
"sass-loader": "^10.0.1",
"sassyfication": "^1.0.1",
"style-loader": "^1.2.1",
"svg-inline-loader": "^0.8.2",
"svgo": "^1.3.2",
"svgo-loader": "^2.2.1",
"terser-webpack-plugin": "^4.1.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"workbox-webpack-plugin": "^6.0.0-alpha.2"
},
"dependencies": {
"dayjs": "^1.8.34",
"effector": "^21.2.2",
"effector-react": "^21.0.4",
"graceful-ws": "^1.3.3",
"nanopop": "^2.1.0",
"normalize.css": "^8.0.1",
"preact": "^10.4.8",
"preact-router": "^3.2.1",
"pretty-bytes": "^5.4.0"
}
}