-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
78 lines (78 loc) · 2.47 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
68
69
70
71
72
73
74
75
76
77
78
{
"private": true,
"name": "creature-chess",
"version": "0.6.2",
"description": "Creature Chess",
"scripts": {
"build-web-game": "yarn workspace @creature-chess-app/web-game build",
"build-web-menu": "yarn workspace @creature-chess-app/web-menu build",
"build-server-game": "",
"build-server-info": "",
"dev-web-game": "yarn workspace @creature-chess-app/web-game dev",
"dev-web-menu": "yarn workspace @creature-chess-app/web-menu dev",
"start-server-game": "ts-node-dev apps/server-game/index.ts",
"start-server-info": "ts-node-dev apps/server-info/index.ts",
"start-web-menu": "yarn workspace @creature-chess-app/web-menu dev",
"test": "yarn workspaces foreach --all run test",
"lint": "eslint \"apps/**/*.ts\" \"modules/**/*.ts\" \"apps/**/*.tsx\" \"modules/**/*.tsx\"",
"prettier": "prettier -w ./",
"prettier-check": "prettier -c ./",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"workspaces": [
"modules/@creature-chess/*",
"modules/@cc-server/*",
"modules/@cc-web/*",
"modules/@shoki/*",
"modules/@shoki-web/*",
"modules/@tools/*",
"apps/*"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.5",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-onboarding": "1.0.11",
"@storybook/blocks": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-webpack5": "^7.6.17",
"@storybook/test": "^7.6.17",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.17",
"@types/react-modal": "^3.13.1",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"jest": "^29.7.0",
"jest-standard-reporter": "^2.0.0",
"prettier": "^3.2.5",
"storybook": "^7.6.17",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"classnames": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-jss": "^10.9.0",
"redux": "^5.0.1",
"redux-saga": "^1.3.0",
"ts-node-dev": "^2.0.0"
},
"packageManager": "[email protected]"
}