-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
36 lines (36 loc) · 921 Bytes
/
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
{
"name": "@nuxtjs/proxy",
"version": "2.1.0",
"description": "proxy support for nuxt server",
"repository": "nuxt-community/proxy-module",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "siroc build",
"dev": "nuxt test/fixture",
"lint": "eslint --ext .js,.vue,.ts .",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && jest"
},
"dependencies": {
"http-proxy-middleware": "^1.0.6"
},
"devDependencies": {
"@babel/preset-typescript": "^7.12.7",
"@nuxt/test-utils": "latest",
"@nuxt/types": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"eslint": "latest",
"jest": "latest",
"nuxt": "^2.14.12",
"siroc": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}