-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.22 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
{
"name": "photo-timeline",
"author": "Kyle Coburn",
"version": "0.1.0",
"license": "ISC",
"type": "module",
"scripts": {
"git:pull": "git pull",
"dev": "vitepress dev site",
"build": "vitepress build site",
"serve": "vitepress serve site"
},
"dependencies": {
"gray-matter": "^4.0.3",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"vitepress": "1.0.0-alpha.36"
},
"devDependencies": {
"@ky-is/eslint-config": "^2.5.1",
"@types/node": "^14.18.36",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vue/eslint-config-typescript": "^11.0.2",
"@vuedx/typecheck": "^0.7.6",
"@vuedx/typescript-plugin-vue": "^0.7.6",
"autoprefixer": "^10.4.13",
"eslint": "^8.32.0",
"eslint-plugin-vue": "^9.9.0",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vue": "^3.2.45"
},
"eslintConfig": {
"extends": "@ky-is/eslint-config/vue-typescript",
"parserOptions": {
"sourceType": "module",
"project": [
"tsconfig.eslint.json"
]
},
"rules": {
"vue/multi-word-component-names": "off"
}
},
"eslintIgnore": [
"!.vitepress"
],
"postcss": {
"plugins": {
"tailwindcss": {
"config": "site/tailwind.config.ts"
},
"autoprefixer": {}
}
}
}