-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.43 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
{
"name": "PoE-leveling",
"version": "1.1.0",
"description": "Quick and dirty leveling guide website for poe",
"author": "Blemming",
"private": true,
"scripts": {
"postversion": "git push && git push --tags",
"gen:md": "node ./tools/mdparser.js",
"gen:gems": "node ./tools/updategemdata.js",
"data": "node ./tools/mdparser.js && node ./tools/updategemdata.js",
"dev": "nuxt",
"build": "npm run data && nuxt build",
"start": "nuxt start",
"generate": "npm run data && nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"@nuxtjs/markdownit": "^2.0.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sentry": "^5.1.7",
"core-js": "^3.24.1",
"just-clone": "^6.1.1",
"markdown-it-attrs": "^4.1.4",
"markdown-it-div": "^1.1.0",
"markdown-it-task-lists": "^2.1.1",
"node-fetch": "^2.6.7",
"nuxt": "^2.15.8",
"v-click-outside": "^3.2.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"@nuxt/postcss8": "^1.1.3",
"@nuxtjs/eslint-config": "^10.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"autoprefixer": "^10.4.8",
"eslint": "^8.21.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-vue": "^9.3.0",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8"
}
}