-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.28 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
{
"name": "todo.it",
"version": "2.54.3",
"description": "Another todo app but with features",
"repository": "https://github.com/begprod/todo.it",
"homepage": "https://begprod.github.io/todo.it/",
"author": "Andrey Aratov",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test:unit:watch": "vitest",
"test:unit": "vitest run",
"prettier:check": "prettier --check src/",
"prettier:format": "prettier --write src/",
"type:check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"deploy": "gh-pages -d dist",
"prepare": "husky install"
},
"dependencies": {
"@vueuse/core": "^10.2.0",
"axios": "^1.7.4",
"date-fns": "^2.30.0",
"lucide-vue-next": "^0.469.0",
"markdown-it": "^13.0.2",
"markdown-it-task-lists": "^2.1.1",
"pinia": "^2.1.3",
"uuid": "^11.0.5",
"vue": "^3.3.7",
"vue-router": "^4.2.2",
"vue3-colorpicker": "^2.3.0",
"vuedraggable": "^4.1.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@pinia/testing": "^0.1.3",
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/node18": "^2.0.1",
"@types/jsdom": "^21.1.1",
"@types/markdown-it": "^13.0.6",
"@types/node": "^18.16.17",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.39.0",
"eslint-plugin-vue": "^9.11.0",
"gh-pages": "^6.0.0",
"husky": "^8.0.0",
"jsdom": "^22.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"prettier": "^3.1.1",
"sass": "^1.63.6",
"tailwindcss": "^3.3.2",
"typescript": "^5.2.2",
"vite": "^5.4.14",
"vite-plugin-pwa": "^0.17.4",
"vitest": "^1.6.1",
"vue-tsc": "^1.8.25"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}