-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
55
56
57
{
"name": "@repeated-pleasant-games/tabletop",
"version": "1.0.0",
"description": "A local-first, peer-to-peer virtual tabletop (VTT).",
"scripts": {
"develop": "vite",
"build": "vite build",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"prepare": "husky install"
},
"keywords": [
"vtt",
"ttrpg",
"dnd",
"virtual-tabletop",
"tabletop",
"tabletop-gaming",
"tabletop-rpg"
],
"author": "Joseph R Miles <[email protected]>",
"license": "AGPL-3.0-only",
"dependencies": {
"@joebobmiles/y-react": "^1.1.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"yjs": "^13.5.12",
"zustand": "^3.5.10",
"zustand-middleware-yjs": "^1.2.6"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@google/semantic-release-replace-plugin": "^1.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"husky": "^7.0.2",
"jest": "^27.1.0",
"semantic-release": "^19.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-standard": "^10.0.0",
"typescript": "^4.4.2",
"vite": "^2.5.4"
},
"ts-standard": {
"project": "./tsconfig.lint.json"
}
}