-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
128 lines (128 loc) · 3.5 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "webappkit",
"type": "module",
"private": true,
"workspaces": [
"@reactorx/*",
"@querycap/*",
"@querycap-dev/*",
"@querycap-ui/*"
],
"packageManager": "pnpm@6.14.7",
"engines": {
"node": ">=17",
"pnpm": ">=6"
},
"scripts": {
"preinstall": "pnpx husky install"
},
"devkit": {
"images": {
"build": "docker.io/library/node:17-buster",
"runtime": "docker.io/querycap/webappserve:0.2.1"
},
"actions": {
"dev": "vite dev --host --config=vite.config.ts",
"build": "vite build --config=vite.config.ts",
"preview": "vite preview --port=3000 --host --config=vite.config.ts"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --quiet"
]
},
"prettier": {
"trailingComma": "all",
"arrowParens": "always",
"printWidth": 120
},
"eslintConfig": {
"extends": [
"@querycap-dev/eslint-config"
],
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"func-style": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"react/prop-types": "off"
}
},
"dependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-syntax-jsx": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/runtime-corejs3": "^7.17.9",
"@babel/types": "^7.17.0",
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@emotion/babel-plugin": "^11.9.2",
"@emotion/react": "^11.9.0",
"@jest/globals": "^27.5.1",
"@querycap-dev/babel-preset": "workspace:*",
"@querycap-dev/devkit": "workspace:*",
"@querycap-dev/eslint-config": "workspace:*",
"@querycap-dev/monobundle": "workspace:*",
"@querycap-dev/vite-presets": "workspace:*",
"@querycap-ui/babel-preset-css-prop": "workspace:*",
"@querycap-ui/core": "workspace:*",
"@querycap/config": "workspace:*",
"@querycap/lodash": "workspace:*",
"@testing-library/react": "^13.0.1",
"@types/babel-plugin-macros": "^2.8.5",
"@types/babel__preset-env": "^7.9.2",
"@types/benchmark": "^2.1.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"assert": "^2.0.0",
"axios": "^0.26.1",
"babel-jest": "^27.5.1",
"babel-plugin-macros": "^3.1.0",
"benchmark": "2.1.4",
"cheerio": "^1.0.0-rc.10",
"date-fns": "^2.28.0",
"eslint": "^8.13.0",
"eslint-plugin-react": "^7.29.4",
"fast-glob": "^3.2.11",
"gh-pages": "^3.2.3",
"history": "^5.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"js-yaml": "^4.1.0",
"lint-staged": "^12.3.7",
"localforage-memoryStorageDriver": "0.9.2",
"path-browserify": "^1.0.1",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"prismjs": "1.27.0",
"react": "~18.0.0",
"react-dom": "~18.0.0",
"requirejs": "^2.3.6",
"rxjs": "^7.5.5",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"uuid": "^8.3.2",
"vite": "^2.9.5",
"vite-plugin-pwa": "^0.11.13",
"workbox-window": "^6.5.3"
}
}