This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.95 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
{
"name": "@jaoafa/jaoweb",
"version": "1.0.0",
"description": "jao Minecraft Server Website",
"keywords": [
"jaoafa",
"vue",
"nuxt"
],
"homepage": "https://jaoafa.com/",
"bugs": "https://github.com/jaoafa/jaoweb/issues",
"license": "UNLICENSED",
"contributors": [
{
"name": "Hiratake",
"url": "https://hiratake.xyz/"
},
{
"name": "Tomachi",
"url": "https://tomacheese.com/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/jaoafa/jaoweb.git"
},
"dependencies": {
"@nuxt/content": "^1.14.0",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/sitemap": "^2.4.0",
"core-js": "^3.18.1",
"nuxt": "^2.15.8",
"prism-themes": "^1.9.0",
"vue-scrollto": "^2.20.0"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^4.0.0",
"fibers": "^5.0.0",
"husky": "^7.0.2",
"prettier": "^2.4.1",
"sass": "^1.42.1",
"sass-loader": "^10.1.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.5.0",
"stylelint-config-standard": "^22.0.0",
"typescript": "^4.4.3"
},
"scripts": {
"dev": "cross-env NODE_ENV=development HOST=0.0.0.0 PORT=3000 BASE_URL=http://localhost:3000 nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore",
"lint": "yarn lint:js && yarn lint:style",
"prepare": "husky install"
}
}