-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.68 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.68 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
{
"name": "markmetcalfe.com",
"private": true,
"type": "module",
"engines": {
"node": "22.x.x"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "npx playwright test",
"chromatic": "chromatic --playwright --exit-zero-on-changes",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"dependencies": {
"@markmetcalfe/resume": "^1.0.0",
"@nuxt/eslint": "1.2.0",
"@nuxt/fonts": "0.11.0",
"@nuxt/icon": "1.11.0",
"@nuxt/image": "1.10.0",
"@nuxt/test-utils": "3.17.2",
"@pinia/nuxt": "0.11.3",
"color-convert": "^3.0.1",
"eslint": "^9.0.0",
"hex-color-to-color-name": "^1.0.2",
"is-mobile": "^5.0.0",
"nuxt": "^3.16.1",
"pinia": "^3.0.1",
"react-device-detect": "^2.2.3",
"three": "^0.182.0",
"tone": "^15.0.4",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@chromatic-com/playwright": "^0.12.0",
"@iconify-json/bx": "^1.2.2",
"@iconify-json/fad": "^1.2.1",
"@playwright/test": "^1.52.0",
"@types/color-convert": "^2.0.4",
"@types/spotify-api": "^0.0.25",
"@types/three": "^0.181.0",
"chromatic": "^13.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"sass": "^1.86.0",
"stylelint": "^16.16.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.6.0",
"stylelint-config-standard-scss": "^14.0.0",
"typescript": "^5.8.2"
},
"lint-staged": {
"**/*.{js,ts,vue,jsx,tsx}": "eslint --fix",
"**/*.vue": "stylelint --fix strict"
}
}