-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 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
{
"version": "0.0.0",
"scripts": {
"start": "concurrently 'npm:watch:*' 'npm:vite'",
"watch:css": "npm run types:css -- --watch",
"watch:zod": "npm run types:zod -- --watch",
"vite": "vite",
"prebuild": "npm run generate",
"build": "tsc && vite build",
"build-no-types": "vite build",
"build:types": "tcm src --camelCase",
"build:vite": "tsc && vite build",
"serve": "vite preview",
"test": "uvu -r @swc-node/register -r global-jsdom/register -r mock-css-modules --ignore misc src/__tests__",
"test2": "uvu -r @swc-node/register -r mock-css-modules --ignore misc src/__tests__",
"test3": "uvu -r @swc-node/register -r global-jsdom/register -r mock-css-modules --ignore misc src/__tests__/simple",
"test4": "uvu -r @swc-node/register -r mock-css-modules --ignore misc src/__tests__/withJsDom",
"type-coverage": "type-coverage --detail --strict --at-least 90 --ignore-files 'test/*'",
"ts-coverage": "typescript-coverage-report",
"types": "concurrently 'npm:types:*'",
"types:dts": "tsc --noEmit false --emitDeclarationOnly true",
"types:css": "tcm src --camelCase",
"types:zod": "ts-to-zod --all --keepComments",
"types-schema": "typescript-json-schema --ignoreErrors 'src/1_Button_JSDoc_Simple/index.d.ts' '*'",
"emitx": "tsc --noEmit false --outDir dist/components",
"generate": "concurrently 'npm:generate:*'",
"generate:json": "typescript-json-schema --ignoreErrors \"./src/zod/autozod.ts\" '*' -o ./src/zod/autozod.schema.json",
"generate:json-schema": "typescript-json-schema --ignoreErrors \"./src/zod/types.d.ts\" '*' -o ./src/zod/types.schema.json",
"generate:json-dir": "typescript-json-schema --ignoreErrors \"./src/zod/**.ts\" '*' -o ./src/zod/dir.schema.json",
"generate:predicates": "type-predicates-generator -f 'src/utils/types.d.ts' -o src/__generated/predicates.ts -a",
"typedoc": "typedoc"
},
"dependencies": {
"@analytics/listener-utils": "^0.2.4",
"@casl/ability": "^5.4.3",
"@mantine/core": "^2.1.4",
"@mantine/hooks": "^2.1.4",
"@modulz/radix-icons": "^4.0.0",
"analytics": "^0.7.11",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-jss": "^10.7.1",
"zod": "^3.5.1"
},
"devDependencies": {
"@davidwells/config-postcss": "0.0.21",
"@structured-types/api": "^3.40.9",
"@structured-types/prop-types-plugin": "^3.40.9",
"@structured-types/react-plugin": "^3.40.9",
"@swc-node/register": "^1.3.3",
"@testing-library/react": "^12.0.0",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/parser": "^4.28.5",
"@vitejs/plugin-react-refresh": "^1.3.6",
"concurrently": "^6.2.0",
"doxxx": "^1.0.0",
"eslint": "^7.31.0",
"eslint-plugin-jsdoc": "^36.0.6",
"getdocs-ts": "^0.1.0",
"global-jsdom": "^8.2.0",
"inspx": "0.0.1-alpha.6",
"jsdom": "^17.0.0",
"mock-css-modules": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-no-unused-selectors": "^1.0.39",
"ts-node": "^10.2.1",
"ts-to-jsdoc": "^1.1.2",
"ts-to-zod": "^1.4.0",
"type-coverage": "^2.18.0",
"type-fest": "^1.2.3",
"type-predicates-generator": "^0.3.1",
"typed-css-modules": "^0.7.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.2",
"typescript-coverage-report": "^0.6.0",
"typescript-json-schema": "^0.50.1",
"uvu": "^0.5.1",
"vite": "^2.4.4"
},
"useful": {
"esm": "^3.2.25",
"jsdom": "^16.7.0"
}
}