forked from samcarrington/code-style
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.97 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
{
"name": "folk-style",
"version": "3.2.4",
"description": "A house coding styleguide for Analogfolk",
"author": "Sam Carrington <sam.carrington@analogfolk.com>",
"license": "MIT",
"repository": "https://github.com/AnalogFolk/folk-style.git",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"check:prettier": "yarn lint:prettier --list-different",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:eslint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:prettier": "prettier \"**/*.{js,json,css,scss,vue,html,md}\"",
"lint:markdownlint": "markdownlint \"content\\**\\*.md\"",
"lint": "yarn lint:js",
"test": "jest"
},
"lint-staged": {
"*.{js,json,css,vue,md}": "prettier --write",
"*.{js,vue}": "eslint --fix",
"*.{md}": "markdownlint"
},
"dependencies": {
"@nuxt/content": "^1.14.0",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/i18n": "^7.0.3",
"@nuxtjs/pwa": "^3.3.5",
"core-js": "^3.18.1",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"nuxt": "^2.15.8"
},
"devDependencies": {
"@nuxt/types": "~2.15.8",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/tailwindcss": "^4.2.1",
"@vue/test-utils": "^1.2.2",
"autoprefixer": "^10.3.6",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.2.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-vue": "^7.18.0",
"jest": "^27.2.4",
"markdownlint-cli": "^0.28.1",
"postcss": "^8.3.8",
"prettier": "2.4.1",
"prism-themes": "^1.9.0",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"sass": "^1.42.1",
"sass-loader": "^10.2.0",
"tailwindcss": "^2.2.16",
"vue-jest": "^3.0.7"
},
"peerDependencies": {
"vue": "2.x",
"vue-template-compiler": "2.x"
}
}