-
-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
61 lines (61 loc) · 1.92 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
{
"name": "renderer",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "vite --port ${PORT:-5173}",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"test:unit": "vitest --environment jsdom",
"build-only": "vite build",
"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",
"link:parser": "yalc add @markwhen/parser && yalc link @markwhen/parser && npm install",
"unlink:parser": "yalc remove @markwhen/parser && npm install",
"test": "npx playwright test"
},
"dependencies": {
"@markwhen/parser": "^0.6.4",
"@vuepic/vue-datepicker": "^3.6.6",
"@vueuse/core": "^9.12.0",
"@vueuse/integrations": "^9.12.0",
"chrono-node": "^2.5.0",
"lru-cache": "^7.14.1",
"lunr": "^2.3.9",
"luxon": "^3.2.1",
"pinia": "^2.0.30",
"stripe": "^10.15.0",
"throttle-debounce": "^5.0.0",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@playwright/test": "^1.30.0",
"@rushstack/eslint-patch": "^1.1.0",
"@tailwindcss/container-queries": "^0.1.0",
"@types/jsdom": "^20.0.1",
"@types/lunr": "^2.3.4",
"@types/luxon": "^3.2.0",
"@types/node": "^16.11.45",
"@types/throttle-debounce": "^5.0.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.2.6",
"@vue/tsconfig": "^0.1.3",
"@vueuse/head": "^1.0.23",
"autoprefixer": "^10.4.13",
"eslint": "^8.29.0",
"eslint-plugin-vue": "^9.8.0",
"jsdom": "^20.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.18",
"prettier": "^2.8.1",
"sass": "^1.56.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5",
"vite": "^4.0.4",
"vitest": "^0.28.3",
"vue-tsc": "^1.0.24"
}
}