-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.93 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
{
"name": "moby-dick-lorem-ipsum",
"version": "1.3.1",
"description": "To produce a mighty book, you must choose a mighty theme. The Vue/Nuxt front-end for a Moby Dick themed Lorem Ipsum generator.",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Recidvst/moby-dick-lorem-ipsum.git"
},
"homepage": "https://github.com/Recidvst/moby-dick-lorem-ipsum#readme",
"author": "Chris Snowden <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt -o --port 5678",
"build": "nuxt build",
"build:a": "nuxt build -a",
"start": "nuxt start -o --port 5678",
"generate": "nuxt generate",
"generate:start": "nuxt generate && nuxt start -o --port 5678",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:jsfix": "eslint --fix --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{vue,css,scss}\" --ignore-path .gitignore",
"lint:stylefix": "stylelint --fix \"**/*.{vue,css,scss}\" --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:style",
"lint:fix": "npm run lint:jsfix && npm run lint:stylefix",
"check": "echo 'npm OK'"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --verbose && pretty-quick --staged --verbose",
"post-commit": "echo '🎈🎈🎈🎈🎈🎈🎈🎈🎈🎈'"
}
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "5.15.4",
"@fortawesome/free-solid-svg-icons": "5.15.4",
"@nuxt/content": "1.15.1",
"@nuxtjs/applicationinsights": "2.0.10",
"@nuxtjs/dotenv": "1.4.2",
"@nuxtjs/fontawesome": "1.1.2",
"@nuxtjs/pwa": "3.3.5",
"@nuxtjs/sitemap": "2.4.0",
"bulma": "1.0.1",
"core-js": "3.37.1",
"dotenv": "6.2.0",
"nuxt": "2.17.4",
"sass": "1.77.6",
"sass-loader": "10.4.1",
"vue": "2.7.16",
"vue-dompurify-html": "2.6.0",
"vuex": "3.6.2",
"vuex-persistedstate": "4.0.0-beta.3"
},
"devDependencies": {
"@nuxtjs/eslint-config": "5.0.0",
"@nuxtjs/eslint-module": "3.1.0",
"@nuxtjs/style-resources": "1.2.2",
"@nuxtjs/stylelint-module": "4.2.2",
"@nuxtjs/svg": "0.4.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"cross-env": "5.2.1",
"eslint": "7.32.0",
"eslint-friendly-formatter": "3.0.0",
"eslint-loader": "4.0.2",
"eslint-plugin-html": "6.2.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-nuxt": "2.0.0",
"eslint-plugin-vue": "7.20.0",
"font-awesome": "4.7.0",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"postcss-custom-properties": "11.0.0",
"prettier": "2.8.8",
"pretty-quick": "3.3.1",
"sass-loader": "10.1.1",
"stylelint": "13.13.1",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "20.0.0",
"stylelint-prettier": "1.2.0"
}
}