-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 888 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": "typescript-snake-game",
"version": "1.0.0",
"description": "A snake game with a clean architecture that is extremely well tested in Jest.",
"main": "index.js",
"scripts": {
"start": "parcel index.html --open",
"build": "parcel build index.html",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/p-sun/typescript-snake-game.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/p-sun/typescript-snake-game/issues"
},
"homepage": "https://github.com/p-sun/typescript-snake-game#readme",
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"jest": "^29.3.1",
"parcel-bundler": "^1.12.5",
"prettier": "2.8.0",
"prettier-plugin-sort-imports": "^1.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}