-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 857 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
{
"name": "minesweeper-clone",
"version": "1.0.6",
"description": "A clone of Minesweeper made using JavaScript and rendered with PixiJS.",
"main": "client/game.js",
"private": true,
"type": "module",
"scripts": {
"dev": "vite serve",
"build": "vite build",
"serve": "vite preview",
"format": "prettier --config ./.prettierrc --write .",
"test": "node --experimental-vm-modules node_modules/jest-cli/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Coteh/MinesweeperClone.git"
},
"author": "James Cote",
"license": "MIT",
"dependencies": {
"pixi.js": "4.3.0",
"vite": "^5.4.10",
"vite-plugin-node-polyfills": "^0.22.0"
},
"devDependencies": {
"jest-cli": "^29.7.0",
"jest-junit": "^16.0.0",
"pixi-filters": "1.0.6",
"prettier": "2.0.5"
}
}