-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
88 lines (88 loc) · 2.45 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
82
83
84
85
86
87
88
{
"name": "tofino",
"private": true,
"version": "4.2.0",
"description": "A WordPress starter theme for jumpstarting custom theme development.",
"keywords": [
"WordPress",
"theme",
"tofino"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"tests": "vitest",
"tests-ui": "vitest --ui",
"cy": "cypress open",
"cy-run": "npx cypress run --browser chrome",
"ct": "npx cypress open-ct"
},
"author": "Daniel Hewes <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/creativedotdesign/tofino.git"
},
"bugs": {
"url": "https://github.com/creativedotdesign/tofino/issues"
},
"homepage": "https://creativedotdesign.com",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"engines": {
"node": ">=20.0.0",
"npm": ">=8.0.0"
},
"type": "module",
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/body-scroll-lock": "^3.1.2",
"@types/browser-sync": "^2.29.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@types/webfontloader": "^1.6.38",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@vitest/coverage-istanbul": "^1.1.1",
"@vitest/ui": "^1.1.1",
"@vue/apollo-composable": "^4.0.0-beta.12",
"@vue/test-utils": "^2.4.3",
"autoprefixer": "^10.4.16",
"axe-core": "^4.8.3",
"axe-html-reporter": "^2.2.3",
"cypress": "^13.6.2",
"cypress-axe": "^1.5.0",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-vue": "^9.19.2",
"jsdom": "^23.0.1",
"postcss": "^8.4.32",
"postcss-import": "^16.0.0",
"postcss-url": "^10.1.3",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.10",
"stylelint": "^16.1.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-prettier": "^5.0.0",
"ts-node": "^10.9.2",
"vite": "^5.0.10",
"vite-plugin-browser-sync": "^2.0.1",
"vite-plugin-chunk-split": "^0.5.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svg-icons": "^2.0.1",
"vitest": "^1.1.1"
},
"dependencies": {
"body-scroll-lock": "^3.1.5",
"pinia": "^2.1.7",
"tailwindcss": "^3.4.0",
"vue": "^3.4.4",
"webfontloader": "github:creativedotdesign/webfontloader#feature/google-fonts-v2"
}
}