This repository has been archived by the owner on Oct 31, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
68 lines (68 loc) · 2.48 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
{
"name": "beam.cafe",
"private": true,
"version": "0.0.0",
"description": "",
"main": "src/app/index.tsx",
"author": "Simon Reinisch <[email protected]>",
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js --progress",
"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/webpack-env": "^1.15.3",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"autoprefixer": "^10.0.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.1",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.9.0",
"eslint-config-simon": "^2.1.0",
"eslint-plugin-align-import": "^1.0.0",
"eslint-plugin-react": "^7.21.1",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^0.11.2",
"node-sass": "^4.14.1",
"postcss": "^8.0.9",
"postcss-loader": "^4.0.2",
"progress-bar-webpack-plugin": "^2.1.0",
"react-refresh": "^0.8.3",
"sass-loader": "^10.0.2",
"sassyfication": "^1.0.2",
"style-loader": "^1.2.1",
"svg-inline-loader": "^0.8.2",
"svgo": "^1.3.2",
"svgo-loader": "^2.2.1",
"terser-webpack-plugin": "^4.2.2",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"workbox-webpack-plugin": "^5.1.4"
},
"dependencies": {
"graceful-ws": "^1.3.3",
"mobx": "^5.15.7",
"mobx-react": "^6.3.0",
"nanopop": "^1.3.0",
"normalize.css": "^8.0.1",
"preact": "^10.5.2",
"pretty-bytes": "^5.4.1"
}
}