forked from nuxt-modules/strapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 1.85 KB
/
package.json
File metadata and controls
executable file
·71 lines (71 loc) · 1.85 KB
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
{
"name": "@nuxtjs/strapi",
"version": "0.3.4",
"description": "Strapi module for Nuxt",
"repository": "nuxt-community/strapi-module",
"license": "MIT",
"sideEffects": false,
"exports": {
".": "./lib/module.js",
"./lib/runtime/*": "./lib/runtime/*",
"./package.json": "./package.json"
},
"main": "./lib/module.js",
"typings": "./lib/runtime.d.ts",
"files": [
"lib",
"types"
],
"scripts": {
"build": "siroc build",
"dev": "yarn nuxt-ts example",
"docs": "nuxt docs",
"lint": "eslint --ext .ts --ext .vue .",
"release": "yarn test && standard-version && yarn build && git push --follow-tags && npm publish",
"test": "yarn lint && jest"
},
"dependencies": {
"@nuxt/http": "^0.6.4",
"cookie-universal-nuxt": "^2.1.4",
"defu": "^5.0.0",
"destr": "^1.1.0",
"hookable": "^4.4.1",
"ms": "^2.1.3",
"requrl": "^3.0.2",
"ufo": "^0.7.5"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@nuxt/test-utils": "^0.2.2",
"@nuxt/types": "^2.15.6",
"@nuxt/typescript-build": "^2.1.0",
"@nuxt/typescript-runtime": "^2.1.0",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@nuxtjs/module-test-utils": "latest",
"@types/jest": "^26.0.23",
"babel-eslint": "latest",
"babel-jest": "^27.0.1",
"copyfiles": "^2.4.1",
"eslint": "^7.27.0",
"husky": "^6.0.0",
"jest": "^27.0.1",
"nuxt": "2.15.6",
"siroc": "^0.10.1",
"standard-version": "^9.3.0",
"ts-loader": "^8.3.0",
"typescript": "^4.3.2",
"vuex": "^3.6.2"
},
"peerDependencies": {
"@nuxt/types": "*",
"vuex": "*"
},
"publishConfig": {
"access": "public"
}
}