-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 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
{
"name": "sooch",
"version": "0.0.5",
"description": "A surreal themed clicker/idle game inspired by Plaaosert's Sooch discord bot",
"main": "index.js",
"repository": "[email protected]:surrealegg/sooch.git",
"author": "surrealegg <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "snowpack dev --polyfill-node",
"build": "snowpack build --polyfill-node",
"lint:eslint": "eslint ./src --ext .ts",
"lint:prettier": "prettier --check .",
"fix:eslint": "eslint ./src --ext .ts --fix",
"fix:prettier": "prettier --write ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": ">=5.16.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "2.3.2",
"snowpack": "^3.8.8",
"typescript": "^4.4.2"
},
"dependencies": {
"@pixi/sound": "^4.0.4",
"@types/lz-string": "^1.3.34",
"@types/pixi.js": "^5.0.0",
"lz-string": "^1.4.4",
"pixi.js": "^6.1.2"
}
}