-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "cat-in-the-box",
"version": "1.0.0",
"description": "Digital implementation of the Cat in the Box board game",
"main": "index.js",
"dependencies": {
"lodash": "^4.17.21",
"nanoid": "^4.0.2",
"xstate": "^4.38.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.196",
"@typescript-eslint/eslint-plugin": ">=5.57.0",
"@typescript-eslint/parser": ">=5.57.0",
"eslint": ">=8.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.57.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": ">=4.4",
"vitest": "^0.32.4"
},
"scripts": {
"test": "vitest",
"lint": "eslint --ext .ts,.tsx src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pietrofxq/cat-in-the-box-js.git"
},
"author": "Pietro Coelho",
"license": "MIT",
"bugs": {
"url": "https://github.com/pietrofxq/cat-in-the-box-js/issues"
},
"homepage": "https://github.com/pietrofxq/cat-in-the-box-js#readme"
}