-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.51 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.51 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
{
"name": "evolution-sim",
"version": "1.0.0",
"description": "",
"main": "src/index.tsx",
"scripts": {
"start": "webpack serve --mode development",
"build:wasm": "wasm-pack build libs/simulation-wasm --out-dir ../../wasm --out-name simulation",
"build": "npm run build:wasm && npx webpack",
"init-rust-toolchain": "curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh",
"github:deploy": "npm ci && npm run init-rust-toolchain && npm run build",
"lint": "npx eslint ./src --fix"
},
"keywords": [],
"author": "Jonathan Breidfjord <jbreidfjord@gmail.com>",
"license": "ISC",
"dependencies": {
"firebase": "8.5",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@types/node": "^18.6.1",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@wasm-tool/wasm-pack-plugin": "^1.6.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"eslint": "^8.20.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-react": "^7.30.1",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.1"
}
}