-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.16 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
{
"name": "gptbundle",
"version": "0.0.1",
"description": "GPTBundle, a React application toolkit, harnesses AI to convert textual content into structured forms and delivers advanced autofill suggestions.",
"homepage": "https://github.com/vintasoftware/GPTBundle",
"bugs": "https://github.com/vintasoftware/GPTBundle/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/vintasoftware/GPTBundle.git"
},
"license": "MIT",
"author": "Vinta Software",
"engines": {
"node": ">=20"
},
"peerDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"npx prettier -w",
"npx eslint --fix"
],
"*.{css,json}": [
"npx prettier -w"
]
},
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch",
"prepare": "husky install",
"build": "pnpm -F @gptbundle/server build && pnpm -F @gptbundle/client build",
"build:watch": "pnpm -F @gptbundle/server build:watch & pnpm -F @gptbundle/client build:watch"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@next/eslint-plugin-next": "^14.0.4",
"@testing-library/react": "^14.1.2",
"@types/eslint": "^8.56.0",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitejs/plugin-react": "^4.2.1",
"babel-loader": "9.1.3",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.2.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "15.2.0",
"prettier": "^3.1.1",
"stylelint": "^16.0.2",
"stylelint-config-standard-scss": "^12.0.0",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-dts": "^3.7.0"
}
}