-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
47 lines (47 loc) · 2.05 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
43
44
45
46
47
{
"name": "encrusted",
"version": "1.0.0",
"description": "A z-machine (interpreter) for Infocom-era text adventure games",
"author": "Sterling DeMille <sterlingdemille+npm@gmail.com>",
"license": "MIT",
"repository": "https://github.com/demille/encrusted",
"private": true,
"scripts": {
"bundle": "webpack --config ./webpack.prod.js --progress",
"check:web": "cargo +nightly check --lib --target=wasm32-unknown-unknown",
"check:term": "cargo check --bin encrusted",
"build:debug": "cargo +nightly build --lib --target=\"wasm32-unknown-unknown\" && mkdir -p ./build/ && cp ./target/wasm32-unknown-unknown/debug/web.wasm ./build/web.wasm",
"build:release": "cargo +nightly build --lib --target=\"wasm32-unknown-unknown\" --release && mkdir -p ./build/ && cp ./target/wasm32-unknown-unknown/release/web.wasm ./build/web.wasm",
"release": "npm run bundle && npm run build:release",
"dev": "webpack-dev-server --config ./webpack.dev.js --content-base ./build --host 0.0.0.0 --port 8000 --no-inline",
"clippy": "cargo clippy -- -A unreadable_literal -A cast_lossless -Z no-trans",
"clippy-lite": "cargo clippy -- -A unreadable_literal -A cast_lossless -A match_same_arms -A match_overlapping_arm -Z no-trans",
"test": "cargo build --bin encrusted && ./tests/runtests.sh"
},
"dependencies": {
"d3": "^3.5.17",
"lz-string": "^1.4.4",
"popper.js": "^1.14.7",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-dropzone": "^4.3.0",
"react-modal": "^3.8.1",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-split-pane": "^0.1.85",
"react-tabs": "^3.0.0",
"redux": "^4.0.1",
"shouldcomponentupdate-children": "^1.1.0",
"wasm-ffi": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^4.6.0",
"terser-webpack-plugin": "^1.2.2",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.1.14"
}
}