-
-
Notifications
You must be signed in to change notification settings - Fork 320
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "ihateregex",
"version": "1.0.0",
"description": "a regex cheatsheet",
"author": "Geon George",
"private": true,
"scripts": {
"dev": "cross-env HOST=0.0.0.0 nuxt",
"build": "nuxt build",
"start:dev": "cross-env NODE_ENV=production site_type=staging port=3700 nuxt start",
"start": "cross-env NODE_ENV=production nuxt start",
"generate:dev": "nuxt generate",
"generate": "cross-env NODE_ENV=production nuxt generate",
"lint": "eslint --ext .js,.vue .",
"lint:fix": "eslint --fix --ext .js,.vue ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*{.js,.vue}": "eslint --fix"
},
"dependencies": {
"@nuxtjs/axios": "^5.9.5",
"@nuxtjs/markdownit": "^1.2.7",
"@nuxtjs/robots": "^2.4.2",
"@nuxtjs/sitemap": "^2.0.1",
"@nuxtjs/toast": "^3.3.0",
"autosize": "^4.0.2",
"nuxt": "^2.14.1",
"regex-colorize": "^0.0.3",
"vue-awesome": "^3.5.4",
"vue-fuse": "^2.1.0",
"vue-text-highlight": "^2.0.8"
},
"devDependencies": {
"@nuxtjs/color-mode": "^1.0.3",
"@nuxtjs/google-analytics": "^2.2.2",
"@nuxtjs/tailwindcss": "^3.0.0",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-vue": "^6.1.2",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"node-sass": "^4.14.1",
"nodemon": "^1.18.9",
"prettier": "^1.19.1",
"sass-loader": "^9.0.3",
"tailwindcss-dark-mode": "^1.1.6"
}
}