-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.31 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "nkcreation",
"version": "1.8.0",
"private": true,
"scripts": {
"dev": "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": "npm run lint:js && npm run lint:style",
"test": "jest",
"postinstall": "husky install"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"dependencies": {
"@nuxt/typescript-runtime": "^2.0.1",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/svg-sprite": "^0.5.2",
"axios": "^0.25.0",
"core-js": "^3.24.0",
"editorjs-html": "^3.4.2",
"normalize.css": "^8.0.1",
"nuxt": "^2.15.8",
"stylelint-scss": "^3.21.0",
"vue-class-component": "^7.2.6"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.0.4",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/google-fonts": "^1.2.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/stylelint-module": "^4.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.1",
"@vue/test-utils": "^1.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.4.6",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-prettier": "^3.4.1",
"fibers": "^5.0.1",
"graphql": "^16.3.0",
"graphql-tag": "^2.12.6",
"husky": "^7.0.4",
"jest": "^26.5.0",
"nuxt-graphql-request": "^4.3.0",
"prettier": "^2.5.1",
"raw-loader": "^4.0.2",
"sass": "^1.54.0",
"sass-loader": "^10.2.1",
"semantic-release": "^18.0.1",
"stylelint": "^13.10.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"ts-jest": "^26.5.1",
"typescript": "^4.7.4",
"vue-jest": "^3.0.4",
"vue-property-decorator": "^9.1.2"
},
"volta": {
"node": "14.18.3",
"npm": "8.3.2"
}
}