-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.97 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": "pagebuilder",
"author": "Heitor Ramon Ribeiro <[email protected]>",
"license": "MIT",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".js,.ts,.vue\" .",
"lint": "yarn lint:js",
"lintfix": "yarn lint:js --fix",
"prepare": "husky install",
"test": "jest",
"update:check": "ncu",
"update:update": "ncu -u && yarn install --force"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache"
},
"dependencies": {
"core-js": "^3.22.2",
"nuxt": "^2.15.8",
"vue": "^3.2.33",
"@nuxtjs/composition-api": "^0.32.0",
"vue-server-renderer": "^2.6.14",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.72.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^9.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"@vue/eslint-config-airbnb": "^6.0.0",
"@vue/test-utils": "^1.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^28.0.1",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "42.0.0",
"eslint-plugin-vue": "^8.7.1",
"eslint-plugin-vuejs-accessibility": "^1.1.1",
"husky": "^7.0.4",
"jest": "^28.0.1",
"lint-staged": "^12.4.1",
"npm-check-updates": "^12.5.9",
"ts-jest": "^27.1.4",
"vue-jest": "^3.0.7"
}
}