-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.74 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
{
"name": "@wearewondrous/nuxt-storyblok-router",
"version": "1.6.0",
"description": "Nuxt.js module to use storyblok routes instead of pages/ directory",
"main": "lib/module.js",
"license": "MIT",
"repository": "https://github.com/wearewondrous/nuxt-storyblok-router",
"contributors": [
{
"name": "Serafin Lichtenhahn <[email protected]>",
"url": "https://github.com/seralichtenhahn"
}
],
"scripts": {
"dev": "nuxt example",
"generate": "nuxt generate example",
"lint": "eslint --ext .js,.vue lib",
"test": "yarn lint && yarn test:unit",
"test:unit": "jest",
"test:unit:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --verbose false",
"release": "yarn test && standard-version && git push --follow-tags && yarn publish"
},
"files": [
"lib"
],
"dependencies": {
"@nuxtjs/sitemap": "^2.4.0",
"consola": "^2.15.0",
"lodash": "^4.17.20",
"slugify": "^1.4.5",
"storyblok-js-client": "^2.5.2"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@nuxtjs/eslint-config": "^3.1.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"codecov": "^3.7.2",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.2",
"get-port": "^5.1.1",
"husky": "^4.2.5",
"jest": "^26.4.2",
"nuxt": "^2.14.3",
"request-promise-native": "^1.0.9",
"standard-version": "^9.0.0"
}
}