forked from vazco/uniforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.75 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
{
"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 packages scripts website",
"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.2.2",
"@docusaurus/core": "2.0.0-alpha.63",
"@docusaurus/preset-classic": "2.0.0-alpha.63",
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"@types/classnames": "2.2.10",
"@types/enzyme": "3.10.6",
"@types/enzyme-adapter-react-16": "1.0.6",
"@types/invariant": "2.2.34",
"@types/jest": "26.0.13",
"@types/lodash": "4.14.161",
"@types/lz-string": "1.3.34",
"@types/simpl-schema": "0.2.8",
"@types/warning": "3.0.0",
"@typescript-eslint/eslint-plugin": "4.1.0",
"@typescript-eslint/parser": "4.1.0",
"ajv": "6.12.4",
"antd": "4.6.3",
"babel-eslint": "10.1.0",
"classnames": "^2.0.0",
"core-js": "3.6.5",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.4",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-vazco": "5.3.1",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.3.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.0",
"graphql": "^15.0.0",
"husky": "4.3.0",
"invariant": "^2.0.0",
"jest": "26.4.2",
"lerna": "3.22.1",
"lint-staged": "10.3.0",
"lodash": "^4.0.0",
"lz-string": "1.4.4",
"prettier": "2.1.1",
"raw-loader": "4.0.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-feather": "2.0.8",
"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.7.0",
"stylelint-config-prettier": "8.0.2",
"stylelint-prettier": "1.1.2",
"ts-jest": "26.3.0",
"tslib": "^1.10.0",
"typescript": "4.0.2",
"universal-fetch": "1.0.0",
"warning": "^4.0.0"
},
"engines": {
"npm": ">=5.0.0"
}
}