-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.02 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
{
"author": "William Mbotta <[email protected]>",
"name": "tic-tac-toe-wasm",
"version": "0.1.5",
"repository": "https://github.com/sepiropht/tic-tac-toe-wasm",
"license": "Apache-2.0/MIT",
"scripts": {
"start": "webpack-dev-server -d",
"build": "webpack --mode production",
"serve": "serve ./dist",
"deploy": "gh-pages -d dist -b gh-pages",
"test:rust": "cd ./crate && cargo test"
},
"bin": {
"create-rust-webpack": ".bin/create-rust-webpack.js"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"@wasm-tool/wasm-pack-plugin": "1.0.1",
"babel-loader": "^8.0.5",
"html-webpack-plugin": "^4.2.2",
"gh-pages": "^3.0.0",
"serve": "^11.1.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"react": "^16.8.5",
"react-dom": "^16.8.5"
}
}