-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 3.51 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
74
75
76
77
{
"name": "vovk",
"version": "2.1.1-beta.13",
"description": "RESTful RPC for Next.js - Transforms Next.js into a powerful REST API platform with RPC capabilities.",
"bin": "./cli/index.cjs",
"scripts": {
"postinstall": "node ./cli/postinstall.cjs",
"upgrade": "npx npm-check-updates -u -x eslint && npm i",
"test": "npm --prefix test run generate && npm run lint-nofix && tsc --noemit && tsc --project tsconfig.cli.json --noemit && npm run unit",
"unit": "PORT=3210 concurrently \"sleep 30 && npm run test:unit\" \"npm run serve:unit\" --kill-others --success first",
"unit:watch": "PORT=3210 concurrently \"sleep 30 && npm run test:unit:watch\" \"npm run serve:unit\" --kill-others --success first",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"postpublish": "node ../post-publish-test/post-publish.cjs",
"serve:unit": "npm --prefix test run generate && npm --prefix test run build && npm --prefix test run start",
"build": "rm -rf dist && npm run toc && tsc && cp package.json dist && cp README.md dist && cp package-lock.json dist && cp -r cli dist",
"lint-nofix": "eslint . --ext .ts,.tsx",
"lint": "npm run lint-nofix -- --fix",
"toc": "npx markdown-toc README.md -i",
"patch": "npm t && npm version patch && npm run build && npm publish ./dist && git push && git push --tags",
"minor": "npm t && npm version minor && npm run build && npm publish ./dist && git push && git push --tags",
"BREAKING-major": "npm t && npm version major && npm run build && npm publish ./dist && git push && git push --tags",
"beta": "npm t && npm version prerelease --preid=beta && npm run build && npm publish ./dist --tag beta && git push && git push --tags",
"beta-notest": "npm version prerelease --preid=beta && npm run build && npm publish ./dist --tag beta && git push && git push --tags",
"beta-patch": "npm t && npm version prepatch --preid=beta && npm run build && npm publish ./dist --tag beta && git push && git push --tags",
"beta-minor": "npm t && npm version preminor --preid=beta && npm run build && npm publish ./dist --tag beta && git push && git push --tags",
"BREAKING-beta-major": "npm t && npm version premajor --preid=beta && npm run build && npm publish ./dist --tag beta && git push && git push --tags",
"release-explicit-version": "npm t && npm version 2.0.0 && npm run build && npm publish ./dist && git push && git push --tags"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120
},
"repository": {
"type": "git",
"url": "git+https://github.com/finom/vovk.git"
},
"keywords": [
"nextjs",
"router"
],
"author": "Andrii Gubanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/finom/vovk/issues"
},
"homepage": "https://github.com/finom/vovk#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.1",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"next": "^14.2.3",
"prettier": "^3.2.5",
"puppeteer": "^22.8.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5",
"zod": "^3.23.8"
},
"peerDependencies": {
"next": ">=13.0.0"
},
"dependencies": {
"@types/node": "^20.12.11"
}
}