forked from cuttle-cards/cuttle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.59 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
{
"name": "cuttle",
"description": "The deepest card game under the sea",
"version": "4.4.3",
"dependencies": {
"connect-redis": "3.0.2",
"dayjs": "1.11.3",
"lodash": "4.17.21",
"machinepack-passwords": "2.3.0",
"sails": "1.5.3",
"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.2.39",
"vue-router": "^4.1.5",
"vuetify": "^3.1.2",
"vuex": "^4.0.2"
},
"devDependencies": {
"@mdi/font": "^7.0.96",
"@storybook/addon-actions": "6.5.12",
"@storybook/addon-essentials": "6.5.12",
"@storybook/addon-interactions": "6.5.12",
"@storybook/addon-links": "6.5.12",
"@storybook/builder-webpack4": "6.5.12",
"@storybook/manager-webpack4": "6.5.12",
"@storybook/testing-library": "0.0.13",
"@storybook/vue": "6.5.12",
"@vitejs/plugin-vue": "^3.1.0",
"@vue/devtools": "^6.5.0",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"cypress": "^11.2.0",
"eslint": "8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "0.6.4",
"eslint-plugin-vitest": "0.0.34",
"eslint-plugin-vue": "9.5.1",
"eslint-plugin-vuetify": "^2.0.0-beta.2",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"sass": "^1.55.0",
"vite": "^3.2.5",
"vite-plugin-vuetify": "^1.0.0-alpha.17",
"vitest": "^0.28.5"
},
"engines": {
"node": "18.12.1"
},
"main": "app.js",
"private": true,
"scripts": {
"start:serve": "vite preview",
"start:client": "vite --host",
"start:server": "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": "node app.js",
"build": "vite build",
"e2e:client": "cypress run",
"e2e:gui": "cypress open",
"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": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"test:unit": "vitest run"
}
}