-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.76 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
48
49
50
51
52
53
54
{
"homepage": "https://github.com/willgarrett610/circuit-tiles#readme",
"name": "circuit-tiles",
"version": "1.0.0",
"description": "Build circuits with tiled modules",
"private": true,
"scripts": {
"build": "webpack",
"build-prod": "webpack --config webpack.prod.js",
"watch": "webpack --watch",
"start": "webpack serve",
"format": "prettier --write .",
"predeploy": "rimraf dist && npm run build-prod",
"deploy": "gh-pages -b deploy -d dist",
"lint": "eslint .",
"lint-fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/willgarrett610/circuit-tiles.git"
},
"author": "Will Garrett, Justin Fernald",
"license": "MIT",
"bugs": {
"url": "https://github.com/willgarrett610/circuit-tiles/issues"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.8.0",
"@wasm-tool/wasm-pack-plugin": "^1.6.0",
"@webpack-cli/serve": "^1.6.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^37.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-webpack-plugin": "^2.6.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.3.2",
"rimraf": "^2.7.1",
"ts-loader": "6.2.2",
"typescript": "^4.3.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.1"
},
"dependencies": {
"@emotion/css": "^11.7.1",
"pixi.js": "5.2.1",
"preact": "^10.6.4"
}
}