-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "@iodigital/vite-plugin-prism",
"description": "Prism, OpenAPI mocking server, integration for Vite",
"version": "0.10.0",
"author": {
"name": "iO",
"website": "https://iodigital.com"
},
"repository": "https://github.com/iodigital-com/vite-plugin-prism",
"keywords": [
"vite",
"stoplight",
"prism",
"openapi"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"lint": "eslint --ext .js,.vue,.ts --fix --ignore-path .gitignore .",
"test": "npx playwright test -c tests/playwright.config.ts",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"prepare": "husky install && npm run build"
},
"dependencies": {
"@nuxt/kit": "^3.0.0",
"@stoplight/prism-core": "^4.10.3",
"@stoplight/prism-cli": "^4.10.3",
"@stoplight/prism-http": "^4.10.3",
"@stoplight/prism-http-server": "^4.10.3",
"body-parser": "^1.20.0",
"chalk": "^5.1.2",
"defu": "^6.1.0",
"h3": "^0.7.21",
"lodash-es": "^4.17.21",
"pino": "^8.5.0",
"pino-pretty": "^9.1.1",
"signale": "^1.4.0",
"split2": "^4.1.0",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@playwright/test": "^1.27.1",
"@rushstack/eslint-patch": "^1.1.3",
"@stoplight/prism-core": "^4.10.3",
"@stoplight/types": "^13.6.0",
"@types/body-parser": "^1.19.2",
"@types/connect": "^3.4.35",
"@types/lodash": "^4.14.188",
"@types/signale": "^1.4.4",
"@types/split2": "^3.2.1",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"fp-ts": "^2.12.3",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"nitropack": "^0.5.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"vite": "^2.9.9"
},
"workspaces": [
"examples/**"
]
}