-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.9 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
58
59
60
61
62
63
64
65
66
67
{
"name": "@asmodee/werewolf-react",
"version": "0.5.4",
"description": "Game Assistant for Werewolves of Miller's Hollow",
"type": "module",
"main": "dist",
"scripts": {
"start": "webpack serve --mode=development",
"build": "linguist release && webpack",
"debug": "webpack --mode=development",
"test": "npm run lint && playwright test",
"lint": "eslint --ext=js,ts,tsx --max-warnings=0 ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/takashiro/asmodee-werewolf-react.git"
},
"keywords": [
"Game",
"Assistant",
"Werewolf",
"Board",
"Game"
],
"author": "Kazuichi Takashiro",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/takashiro/asmodee-werewolf-react/issues"
},
"homepage": "https://github.com/takashiro/asmodee-werewolf-react#readme",
"dependencies": {
"@asmodee/werewolf-core": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.6.8"
},
"devDependencies": {
"@asmodee/werewolf-server": "^3.0.0",
"@karuta/linguist": "^0.8.0",
"@playwright/test": "^1.45.0",
"@types/node": "^20.14.9",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"ts-loader": "^9.5.1",
"typescript": "^5.5.2",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"files": [
"dist"
]
}