-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1011 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
33
34
35
{
"author": "You <[email protected]>",
"name": "rust-webpack-template",
"version": "0.1.0",
"scripts": {
"start": "rimraf dist pkg && webpack-dev-server --open -d",
"build": "rimraf dist pkg && webpack",
"test": "cargo test && wasm-pack test --headless",
"lint": "eslint js/src",
"prepare": "husky install"
},
"dependencies": {
"@minesweeper/engine": "file:./pkg",
"pixi.js": "^6.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"@wasm-tool/wasm-pack-plugin": "^1.1.0",
"copy-webpack-plugin": "^5.0.3",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "2.5.1",
"rimraf": "^3.0.0",
"ts-loader": "^8.3.0",
"typescript": "^4.5.2",
"url-loader": "^4.1.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.3",
"webpack-dev-server": "^3.7.1"
}
}