-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.94 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
{
"name": "vovk-examples",
"version": "1.0.1",
"private": false,
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "tsc --noEmit && next lint",
"upgrade": "npx npm-check-updates -u -x eslint && npm i",
"dev": "vovk dev --next-dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"patch": "npm t && npm version patch && npm run build-client && npm publish && git push && git push --tags",
"minor": "npm t && npm version minor && npm run build-client && npm publish && git push && git push --tags",
"major": "npm t && npm version major && npm run build-client && npm publish && git push && git push --tags",
"build-client": "rm -rf .vovk dist && VOVK_PREFIX=https://vovk-examples.vercel.app/api VOVK_OUT=.vovk vovk generate --client-out .vovk && webpack --mode production",
"vercel-build": "vovk generate && npm run build"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120
},
"repository": {
"type": "git",
"url": "git+https://github.com/finom/vovk-examples.git"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"bright": "^0.8.5",
"next": "14.2.3",
"openai": "^4.44.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.51.4",
"react-to-string": "^0.1.1",
"vovk": "^2.0.1",
"vovk-client": "^0.0.2",
"vovk-zod": "^0.1.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.3",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}