This repository has been archived by the owner on Nov 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.9 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
{
"name": "@d0rich/nuxt-design-system",
"version": "0.8.0",
"main": "./nuxt.config.ts",
"description": "🖼️ Design system for d0rich's projects based on Nuxt 3 and Tailwind CSS",
"keywords": [
"nuxt",
"nuxt3",
"nuxt-layers",
"gsap",
"design-system",
"design-system",
"tailwindcss",
"front-end",
"persona-5"
],
"repository": "https://github.com/d0rich/nuxt-design-system.git",
"author": {
"name": "Nikolay Dorofeev",
"email": "dorich2000@gmail.com",
"url": "https://d0rich.me"
},
"scripts": {
"postinstall": "node fallbackDependencies.mjs",
"prepare": "nuxi prepare && nuxi prepare .playground/",
"lint:ts": "nuxi typecheck",
"lint:js": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "npm run lint:ts && npm run lint:js && npm run lint:prettier",
"lintfix": "prettier --write --list-different . && eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore . --fix",
"test": "vitest",
"build": "nuxt build .playground/",
"dev": "nuxt dev .playground/",
"generate": "nuxt generate .playground/",
"preview": "nuxt preview .playground/"
},
"devDependencies": {
"@nuxt/test-utils": "^3.3.2",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/test-utils": "^2.3.2",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vitest": "^0.1.4",
"nuxt": "^3.3.1",
"playwright": "^1.32.1",
"prettier": "^2.8.4",
"typescript": "^5.0.2",
"vitest": "^0.30.1",
"vue-gtag": "^2.0.1",
"vue-tsc": "^1.2.0"
},
"dependencies": {
"@nuxtjs/color-mode": "^3.2.0",
"@nuxtjs/google-fonts": "^3.0.0-1",
"@nuxtjs/tailwindcss": "^6.6.0",
"@tailwindcss/typography": "^0.5.8",
"gsap": "^3.12.2",
"nuxt-icon": "^0.4.0"
}
}