forked from vazco/uniforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.33 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
{
"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",
"lint": "npm run lint:code && npm run lint:text && npm run lint:types",
"lint:code": "eslint --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/node_modules",
"test": "jest"
},
"dependencies": {
"@ant-design/icons": "4.4.0",
"@docusaurus/core": "2.0.0-alpha.70",
"@docusaurus/preset-classic": "2.0.0-alpha.70",
"@material-ui/core": "4.11.2",
"@material-ui/icons": "4.11.2",
"@types/classnames": "2.2.11",
"@types/enzyme": "3.10.8",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/invariant": "2.2.34",
"@types/jest": "26.0.20",
"@types/lodash": "4.14.168",
"@types/lz-string": "1.3.34",
"@types/simpl-schema": "1.10.0",
"@types/warning": "3.0.0",
"ajv": "7.0.3",
"antd": "4.10.3",
"classnames": "^2.0.0",
"core-js": "3.8.3",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"eslint-config-vazco": "6.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.3.0",
"graphql": "^15.0.0",
"husky": "4.3.8",
"invariant": "^2.0.0",
"jest": "26.6.3",
"lerna": "3.22.1",
"lint-staged": "10.5.3",
"lodash": "^4.0.0",
"lz-string": "1.4.4",
"raw-loader": "4.0.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-feather": "2.0.9",
"react-frame-component": "4.1.3",
"react-test-renderer": "16.13.1",
"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": "26.4.4",
"tslib": "^1.10.0",
"typescript": "4.1.3",
"universal-fetch": "1.0.0",
"warning": "^4.0.0"
},
"engines": {
"npm": ">=7.0.0"
}
}