forked from vazco/uniforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.64 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
{
"name": "uniforms-repository",
"private": true,
"scripts": {
"build": "tsc --build --incremental tsconfig.build.json",
"clean": "tsc --build --clean tsconfig.build.json && rimraf coverage",
"coverage": "jest --coverage",
"install": "lerna bootstrap --hoist && npm run build && husky install",
"lint": "npm run lint:code && npm run lint:text && npm run lint:types",
"lint:code": "eslint --cache --cache-location node_modules/.cache/eslint --cache-strategy content --ext js,ts,tsx .",
"lint:text": "prettier --check \"**/*.{json,md,mdx,yml}\"",
"lint:types": "npm run build",
"prereset": "npm run clean",
"pretest": "npm run lint",
"publish": "npm run clean && npm run build && lerna publish",
"reset": "rimraf node_modules packages/*/node_modules reproductions/.cache reproductions/dist reproductions/node_modules website/.docusaurus website/build website/node_modules",
"test": "jest"
},
"dependencies": {
"@ant-design/icons": "4.4.0",
"@docusaurus/core": "2.1.0",
"@docusaurus/preset-classic": "2.1.0",
"@emotion/react": "11.7.1",
"@emotion/styled": "11.6.0",
"@mui/material": "5.4.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "14.4.3",
"@types/classnames": "2.2.11",
"@types/enzyme": "3.10.8",
"@types/invariant": "2.2.34",
"@types/jest": "26.0.20",
"@types/lodash": "4.14.168",
"@types/lz-string": "1.3.34",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@types/simpl-schema": "1.12.2",
"@types/warning": "3.0.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.0",
"ajv": "8.0.5",
"antd": "4.10.3",
"classnames": "^2.0.0",
"core-js": "3.8.3",
"csstype": "3.0.10",
"enzyme": "3.11.0",
"eslint-config-vazco": "6.2.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.3.0",
"husky": "8.0.1",
"invariant": "^2.0.0",
"jest": "27.0.6",
"lerna": "6.0.1",
"lint-staged": "13.0.3",
"lodash": "^4.0.0",
"lz-string": "1.4.4",
"parcel": "2.9.2",
"raw-loader": "4.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-feather": "2.0.9",
"react-frame-component": "4.1.3",
"react-test-renderer": "17.0.2",
"rimraf": "3.0.2",
"simpl-schema": "^1.0.0 || ^0.0.4",
"stylelint": "13.8.0",
"stylelint-config-prettier": "8.0.2",
"stylelint-prettier": "1.1.2",
"ts-jest": "27.0.3",
"tslib": "^2.2.0",
"typescript": "4.4.4",
"universal-fetch": "1.0.0",
"warning": "^4.0.0",
"zod": "^3.0.0"
},
"engines": {
"npm": ">=7.0.0"
}
}