-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "web-mighty",
"version": "1.0.0",
"description": "Mighty Card Game",
"main": "index.js",
"scripts": {
"build-watch": "webpack && cargo install --root build --path server --features watch-file",
"build": "webpack && cargo install --root build --path server",
"watch": "npm run build-watch && ./build/bin/server",
"run": "npm run build && ./build/bin/server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-mighty-io/web-mighty.git"
},
"keywords": [
"mighty-card-game",
"wasm"
],
"author": "Jaeyong Sung <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/web-mighty-io/web-mighty/issues"
},
"homepage": "https://web-mighty.io",
"devDependencies": {
"@wasm-tool/wasm-pack-plugin": "^1.3.1",
"css-loader": "^6.2.0",
"filemanager-webpack-plugin": "^6.1.2",
"glob": "^7.1.6",
"sass": "^1.32.6",
"sass-loader": "^12.1.0",
"style-loader": "^3.0.0",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"ifvisible.js": "^1.0.6",
"js-sha256": "^0.9.0",
"js-sha512": "^0.8.0"
}
}