-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.26 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.26 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
{
"name": "what-should-i-design",
"version": "0.0.0",
"type": "module",
"license": "(MIT OR Apache-2.0)",
"keywords": [
"ui/ux",
"problem-statment",
"what-should-i-design",
"design"
],
"author": {
"email": "martinsvictor.nd@gmail.com",
"name": "MartinsOnuoha",
"url": "https://github.com/MartinsOnuoha"
},
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"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",
"format": "prettier --write src/",
"commit": "npm run type-check && npm run lint && npm run format && git add . && cz && git push origin head"
},
"dependencies": {
"@apollo/client": "^3.13.9",
"@vue/apollo-composable": "^4.2.2",
"@vueuse/core": "^13.9.0",
"click-outside-vue3": "^4.0.1",
"graphql": "^16.11.0",
"graphql-tag": "^2.12.6",
"lodash.shuffle": "^4.2.0",
"pinia": "^3.0.4",
"vue": "^3.5.22",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.14.1",
"@tsconfig/node18": "^18.2.4",
"@types/jest": "^30.0.0",
"@types/jsdom": "^27.0.0",
"@types/lodash.shuffle": "^4.2.9",
"@types/node": "^24.10.1",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.21",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"cz-emoji-conventional": "^1.2.1",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^27.1.0",
"npm-run-all2": "^8.0.4",
"postcss": "^8.5.5",
"prettier": "^3.6.2",
"sass": "^1.93.3",
"tailwindcss": "^3.4.17",
"typescript": "~5.9.3",
"vite": "^7.2.2",
"vitest": "^4.0.8",
"vue-tsc": "^3.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/MartinsOnuoha/what-should-i-design"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji-conventional"
}
}
}