-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.48 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.48 KB
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
{
"name": "conways-game-of-life-webassembly",
"version": "0.0.0",
"description": "",
"main": "src/index.js",
"author": "Simon Reinisch <[email protected]>",
"license": "MIT",
"scripts": {
"debug:build": "webpack --debug --display-error-details --config webpack.config.prod.js",
"debug:dev": "webpack-dev-server --debug --display-error-details --config webpack.config.dev.js",
"build": "webpack --config webpack.config.prod.js --progress",
"dev": "webpack-dev-server --config webpack.config.dev.js",
"lint:ts": "eslint src/ --ext .js,.ts,.tsx --fix",
"lint:rs": "cd crate && cargo fmt",
"lint:types": "tsc --project tsconfig.json --noEmit",
"lint:all": "run-p lint:ts lint:rs lint:types"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-react-jsx": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@wasm-tool/wasm-pack-plugin": "^1.3.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.1",
"css-hot-loader": "^1.4.4",
"css-loader": "^3.5.3",
"eslint": "^7.1.0",
"eslint-config-simon": "^2.1.0",
"eslint-plugin-align-import": "^1.0.0",
"eslint-plugin-react": "^7.20.0",
"html-webpack-plugin": "^4.3.0",
"loader-utils": "^2.0.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"react-refresh": "^0.8.3",
"sass-loader": "^8.0.2",
"sassyfication": "^1.0.1",
"style-loader": "^1.2.1",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^3.0.1",
"typescript": "^3.9.3",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"workbox-webpack-plugin": "^5.1.3",
"worker-plugin": "^4.0.3"
},
"dependencies": {
"mobx": "^5.15.4",
"nason": "^1.2.0",
"mobx-react": "^6.2.2",
"normalize.css": "^8.0.1",
"preact": "^10.4.4"
}
}