-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.22 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
{
"name": "vuefes-2022",
"version": "1.0.0",
"description": "Vue Fes Japan 2022",
"author": "jiyuujin <[email protected]>",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "nuxi dev",
"build": "nuxi build",
"start": "nuxi preview",
"generate:transpile": "nuxi generate",
"generate:post-transpile": "node scripts/renameDir.js",
"generate": "npm run generate:transpile && npm run generate:post-transpile",
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,sass}\" --ignore-path .gitignore",
"lint": "npm run eslint && npm run stylelint",
"lint:fix": "npm run eslint:fix && npm run stylelint:fix",
"eslint": "eslint . --ext js,jsx,ts,tsx,vue",
"eslint:fix": "eslint . --ext js,jsx,ts,tsx,vue --fix",
"stylelint": "stylelint --config .stylelintrc.js 'app/**/*.vue' 'app/**/*.{css,scss}'",
"stylelint:fix": "stylelint --config .stylelintrc.js 'app/**/*.vue' 'app/**/*.{css,scss}' --fix"
},
"devDependencies": {
"@nuxt/bridge": "npm:@nuxt/bridge-edge",
"@nuxtjs/device": "^2.1.0",
"@nuxtjs/google-gtag": "^1.0.4",
"@nuxtjs/svg": "^0.4.0",
"@nuxtjs/tailwindcss": "^5.0.0-4",
"@testing-library/vue": "^6.5.1",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"@vue/runtime-dom": "^3.2.41",
"eslint": "^8.8.0",
"eslint-plugin-tailwindcss": "^3.4.3",
"eslint-plugin-vue": "^8.4.1",
"eslint-plugin-vuejs-accessibility": "^1.1.1",
"express": "^4.17.2",
"husky": "^7.0.4",
"imagemin-cli": "^7.0.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"nuxt-edge": "latest",
"postcss": "^8.4.6",
"postcss-html": "^1.3.0",
"postcss-scss": "^4.0.3",
"prettier": "^2.5.1",
"sass": "^1.49.7",
"sass-loader": "^8.0.2",
"stylelint": "^14.4.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-scss": "^4.1.0",
"typescript": "^4.5.5"
},
"volta": {
"node": "16.14.2"
},
"dependencies": {
"gsap": "^3.10.2",
"newt-client-js": "^3.1.0"
}
}