-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 874 Bytes
/
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
{
"name": "checkers",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:kaaboaye/checkers.git",
"author": "kaaboaye <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rimraf dist pkg && webpack",
"start": "rimraf dist pkg && webpack-dev-server -d",
"test": "cargo test && wasm-pack test --headless"
},
"devDependencies": {
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@wasm-tool/wasm-pack-plugin": "^1.3.1",
"copy-webpack-plugin": "^5.1.1",
"rimraf": "^3.0.2",
"ts-loader": "^7.0.2",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"worker-plugin": "^4.0.3"
},
"dependencies": {
"comlink": "^4.3.0",
"easy-peasy": "^3.3.0",
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}