-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.24 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.24 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "code",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@8.6.4",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"dev": "run-p dev:vite:open dev:test-server dev:api",
"dev:vite:open": "node server.mjs --open",
"dev:vite": "node server.mjs",
"dev:test-server": "vitest -c tests/vitest.config.ts --ui",
"dev:api": "json-server -p 7777 -w db.json",
"lint": "eslint --ext=.ts,.vue src tests",
"test": "vitest",
"internal:build": "pnpm run internal:build:client && pnpm run internal:build:server",
"internal:build:client": "vite build --ssrManifest --outDir dist/client",
"internal:build:server": "vite build --ssr src/entry-server.ts --outDir dist/server",
"internal:test": "IS_TEST_RUN=yes vitest run -c tests/vitest.config.ts --no-api",
"internal:test:types": "vue-tsc --noEmit --skipLibCheck"
},
"dependencies": {
"@exampledev/new.css": "^1.1.3",
"@pinia/plugin-debounce": "^1.0.1",
"@vueuse/core": "^10.7.2",
"@vueuse/integrations": "^10.7.2",
"@vueuse/router": "^10.7.2",
"animate.css": "^4.1.1",
"devalue": "^4.3.2",
"fuse.js": "^6.6.2",
"js-cookie": "^3.0.5",
"lodash-es": "^4.17.21",
"mande": "^2.0.8",
"pinia": "^2.1.7",
"ts-debounce": "^4.0.0",
"vue": "^3.4.15",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@pinia/testing": "^0.1.3",
"@types/compression": "^1.7.3",
"@types/express": "^4.17.18",
"@types/js-cookie": "^3.0.5",
"@types/lodash-es": "^4.17.9",
"@types/node-fetch": "^2.6.6",
"@types/serve-static": "^1.15.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-vue": "^4.4.0",
"@vitest/ui": "^0.34.3",
"@vitest/ws-client": "^0.34.3",
"@vue/compiler-sfc": "^3.4.15",
"@vue/test-utils": "^2.4.4",
"autoprefixer": "^10.4.16",
"compression": "^1.7.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.17.0",
"express": "^4.18.2",
"happy-dom": "^12.6.0",
"json-server": "^0.17.4",
"msw": "^1.3.2",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"open": "^9.1.0",
"postcss": "^8.4.31",
"serve-static": "^1.15.0",
"shikiji": "^0.6.10",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.2",
"unplugin-vue-markdown": "^0.24.3",
"unplugin-vue-router": "^0.7.0",
"vite": "^4.4.9",
"vite-plugin-md": "^0.21.5",
"vitest": "^0.34.3",
"vue-router-mock": "^1.0.0",
"vue-tsc": "^1.8.27"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MasteringPinia/mastering-pinia--code.git"
},
"keywords": [],
"author": "Eduardo San Martin Morote <posva13@gmail.com> (https://esm.dev)",
"license": "LicenseRef-LICENSE",
"bugs": {
"url": "https://github.com/MasteringPinia/mastering-pinia--code/issues"
},
"homepage": "https://github.com/MasteringPinia/mastering-pinia--code#readme"
}