-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "2021.mekyle.com-2",
"private": true,
"scripts": {
"build": "NODE_ENV=production gridsome build",
"start": "serve ./dist",
"develop": "gridsome develop",
"explore": "gridsome explore",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"test": "echo 'no unit tests yet'"
},
"dependencies": {
"gridsome": "^0.7.0"
},
"devDependencies": {
"@gridsome/plugin-critical": "^0.2.0",
"@gridsome/plugin-sitemap": "^0.4.0",
"@gridsome/source-filesystem": "^0.6.2",
"@gridsome/transformer-remark": "^0.6.4",
"@tailwindcss/postcss7-compat": "npm:@tailwindcss/postcss7-compat",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-prettier": "^8.3",
"eslint-plugin-gridsome": "^1.5",
"eslint-plugin-prettier": "^5.0",
"gridsome-plugin-plausible-analytics": "^1",
"gridsome-plugin-pug": "^0.0.3",
"gridsome-plugin-pwa": "^0.0.22",
"gridsome-plugin-robots-txt": "^1.0.2",
"gridsome-plugin-tailwindcss": "^4.1.1",
"gridsome-source-rest": "^1.0.11",
"husky": "^8.0.3",
"lint-staged": "^13.0.0",
"postcss": "^7",
"prettier": "^3.0",
"pug": "^3.0.0",
"serve": "^14",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"vue-eslint-parser": "^9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": "eslint --cache --fix"
}
}