This repository was archived by the owner on Jan 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.94 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.94 KB
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": "wordly",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --port 4000",
"build": "vue-cli-service build",
"test": "cypress run",
"test:headed": "cypress run --headed",
"test:interactive": "cypress open",
"clean": "rm -rf node_modules && rm -rf dist && rm -rf bun.lockb package-lock.json",
"lint": "eslint src --fix",
"format": "prettier . --write"
},
"dependencies": {
"@chenfengyuan/vue-countdown": "2",
"@cypress/webpack-preprocessor": "^6.0.2",
"@eslint/js": "^9.15.0",
"axios": "^1.7.7",
"canvas-confetti": "^1.9.3",
"chart.js": "^4.4.6",
"confetti-js": "^0.0.18",
"core-js": "^3.39.0",
"crypto-browserify": "^3.12.1",
"cypress": "^13.17.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"eslint-config-prettier": "^9.1.0",
"firebase": "^10.14.1",
"js-cookie": "^3.0.5",
"lucide-vue-next": "^0.460.0",
"npm": "^10.9.1",
"unique-username-generator": "^1.3.0",
"uuid": "^11.0.3",
"vue": "^3.5.13",
"vue-router": "^4.4.5",
"vuefire": "^3.2.0",
"vuex": "^4.1.0",
"wait-on": "^8.0.1",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/compiler-sfc": "^3.5.13",
"add": "^2.0.6",
"autoprefixer": "^10.4.20",
"babel-eslint": "^10.1.0",
"eslint": "^9.15.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.31.0",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.15"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}