-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
83 lines (83 loc) · 3.84 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
79
80
81
82
83
{
"name": "@memebattle/memebattle",
"version": "1.0.0",
"private": true,
"scripts": {
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint-fix:js": "yarn lint:js --fix",
"lint:styles": "stylelint {apps,packages}/**/*.scss",
"lint-fix:styles": "yarn lint:styles --fix",
"lint": "run-p -ln 'lint:*'",
"lint-fix": "run-p -l 'lint-fix:*'",
"test:ci": "yarn workspaces foreach -vip run test:ci",
"blog:test:ci": "yarn workspace @memebattle/blog run test:ci",
"blog:lint": "eslint --ext .js,.jsx,.ts,.tsx apps/blog",
"ligretto:test:ci": "yarn workspaces foreach -vip --include '@memebattle/ligretto-*' run test:ci",
"ligretto:ts-check:ci": "yarn workspaces foreach -vip --include '@memebattle/ligretto-*' run ts-check",
"ligretto:start": "yarn workspaces foreach --jobs unlimited -vip --include '{@memebattle/ligretto-core-backend,@memebattle/ligretto-gameplay-backend,@memebattle/ligretto-frontend}' run start:dev",
"ligretto:start:ci": "yarn workspaces foreach --jobs unlimited -vp --include '{@memebattle/ligretto-core-backend,@memebattle/ligretto-gameplay-backend,@memebattle/ligretto-frontend}' run start:dev",
"ligretto:front:build": "yarn workspace @memebattle/ligretto-frontend run build",
"ligretto:front:start:dev": "yarn workspace @memebattle/ligretto-frontend run start:dev",
"ligretto:gameplay-backend:start:dev": "yarn workspace @memebattle/ligretto-gameplay-backend run start:dev",
"ligretto:gameplay-backend:build": "yarn workspace @memebattle/ligretto-gameplay-backend run build",
"ligretto:core-backend:build": "yarn workspace @memebattle/ligretto-core-backend run build",
"ligretto:core-backend:migrate": "yarn workspace @memebattle/ligretto-core-backend run migrate",
"ligretto:core-backend:production-migrate": "yarn workspace @memebattle/ligretto-core-backend run production-migrate",
"ligretto:core-backend:start:dev": "yarn workspace @memebattle/ligretto-core-backend run start:dev",
"gamehub-client:build": "yarn workspace @memebattle/gamehub-client run build",
"gamehub-client:start:dev": "yarn workspace @memebattle/gamehub-client run dev",
"gamehub-client:lint": "eslint --ext .js,.jsx,.ts,.tsx apps/gamehub-client",
"ligretto-shared:build": "yarn workspace @memebattle/ligretto-shared run build",
"ts-check": "yarn workspaces foreach -vip run ts-check",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"engines": {
"node": ">=20.11"
},
"workspaces": [
"packages/**",
"apps/*"
],
"devDependencies": {
"@storybook/addon-actions": "^7.0.6",
"@storybook/addon-docs": "^7.0.6",
"@storybook/addon-essentials": "^7.0.6",
"@storybook/addon-links": "^7.0.6",
"@storybook/addon-viewport": "^7.0.6",
"@storybook/addons": "^7.0.6",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^7.0.6",
"@storybook/react-vite": "^7.0.6",
"@types/node": "20.11.30",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"css-loader": "^6.7.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-storybook": "^0.6.11",
"npm-run-all": "^4.1.5",
"prettier": "3.2.5",
"react-docgen-typescript-loader": "^3.7.2",
"react-docgen-typescript-plugin": "^1.0.0",
"sass": "^1.54.9",
"sass-loader": "^13.0.2",
"storybook": "^7.0.6",
"style-loader": "^3.3.1",
"stylelint": "16.2.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-prettier": "5.0.0",
"typescript": "5.4.3",
"wait-on": "^7.0.1"
},
"packageManager": "[email protected]",
"resolutions": {
"@types/node": "20.11.30",
"@types/readable-stream": "2.3.15",
"vite": "4.5.0"
}
}