-
-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
108 lines (108 loc) · 4.55 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "cuttle",
"description": "The deepest card game under the sea",
"version": "10.37.0",
"dependencies": {
"chart.js": "4.4.4",
"connect-redis": "6.1.3",
"dayjs": "1.11.13",
"lodash": "4.17.21",
"machinepack-passwords": "2.3.0",
"marked": "10.0.0",
"pinia": "2.2.4",
"rollbar": "^2.26.4",
"sails": "1.5.12",
"sails-disk": "2.1.2",
"sails-hook-orm": "2.1.1",
"sails-hook-sockets": "1.5.5",
"sails-postgresql": "4.0.0",
"sails.io.js": "1.2.1",
"socket.io-client": "2.3.0",
"vue": "3.5.11",
"vue-chartjs": "5.3.1",
"vue-i18n": "9.14.1",
"vue-router": "4.4.5",
"vuetify": "3.7.2"
},
"devDependencies": {
"@mdi/font": "7.4.47",
"@storybook/addon-actions": "7.6.0",
"@storybook/addon-essentials": "7.6.0",
"@storybook/addon-interactions": "7.6.0",
"@storybook/addon-links": "7.6.0",
"@storybook/blocks": "7.6.0",
"@storybook/testing-library": "0.2.2",
"@storybook/vue": "7.6.0",
"@storybook/vue3": "7.6.0",
"@storybook/vue3-vite": "7.6.0",
"@vitejs/plugin-vue": "5.1.4",
"@vue/devtools": "7.4.6",
"concurrently": "9.0.1",
"cross-env": "7.0.3",
"cypress": "13.15.0",
"eslint": "8.54.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "3.5.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-storybook": "0.9.0",
"eslint-plugin-vitest": "^0.3.10",
"eslint-plugin-vue": "9.28.0",
"eslint-plugin-vuetify": "2.4.0",
"prettier": "3.3.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "6.0.1",
"sass": "1.79.4",
"storybook": "7.6.0",
"vite": "5.4.8",
"vite-plugin-vuetify": "^2.0.4",
"vitest": "^0.34.6"
},
"engines": {
"node": "22.11"
},
"main": "app.js",
"private": true,
"scripts": {
"docker:build": "docker compose -f ./docker/docker-compose.yml build --no-cache",
"docker:clean:containers": "docker rm $(docker ps -qa --no-trunc --filter \"status=exited\") || true",
"docker:clean:images": "docker rmi $(docker images --filter \"dangling=true\" -q --no-trunc) || true",
"docker:clean:volumes": "docker volume rm $(docker volume ls -qf dangling=true) || true",
"docker:clean": "npm run docker:clean:containers;npm run docker:clean:images;npm run docker:clean:volumes",
"docker:down": "docker stop $(docker ps -q)",
"docker:nuke": "docker rmi $(docker images -f=\"reference=cuttle*\" -q --no-trunc) || true; npm run docker:clean",
"docker:start": "docker compose -f ./docker/docker-compose.yml up",
"docker:stop": "docker compose -f ./docker/docker-compose.yml down",
"start:serve": "vite preview",
"start:client": "vite --host",
"start:client:gamestate": "cross-env VITE_USE_GAMESTATE_API=true vite --host",
"start:server": "node app.js",
"start:server:gamestate": "cross-env VITE_USE_GAMESTATE_API=true node app.js",
"start:preview": "npm run build;npm run start:server",
"start:devtools": "npx vue-devtools",
"start:dev": "concurrently \"npm run start:client\" \"npm run start:server\" \"npm run start:devtools\"",
"start:dev:gamestate": "concurrently \"npm run start:client:gamestate\" \"npm run start:server:gamestate\" \"npm run start:devtools\"",
"start": "node app.js",
"build": "vite build",
"build:gamestate": "cross-env VITE_USE_GAMESTATE_API=true vite build",
"e2e:client": "cypress run",
"e2e:client:gamestate": "cypress run --env VITE_USE_GAMESTATE_API=true",
"e2e:gui": "cypress open",
"e2e:gui:gamestate": "cypress open --env VITE_USE_GAMESTATE_API=true",
"e2e:gui:playground": "cypress open --config-file tests/e2e/playground/playground.config.js",
"e2e:server": "cross-env VITE_API_URL=http://localhost:1337 cypress run",
"e2e:server:gui": "cross-env VITE_API_URL=http://localhost:1337 cypress open",
"e2e:server:playground": "cross-env VITE_API_URL=http://localhost:1337 cypress run --config-file tests/e2e/playground/playground.config.js",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"test:unit:client": "NODE_ENV=development vitest run",
"test:unit:sails": "NODE_ENV=development vitest run --config tests/unit/vitest-sails.config.mjs",
"test:unit": "npm run test:unit:client && npm run test:unit:sails",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"build-storybook": "storybook build"
}
}