forked from vazco/uniforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.91 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
{
"name": "uniforms-repository",
"private": true,
"scripts": {
"build": "lerna exec --ignore website -- babel --config-file ../../.babelrc.json --out-dir . --extensions '.js,.ts,.tsx' src",
"clean": "rimraf coverage packages/*/*.js",
"coverage": "jest --coverage",
"coverage:report": "codecov",
"install": "npm run build",
"lint": "npm run lint:code && npm run lint:text && npm run lint:types",
"lint:code": "eslint packages website",
"lint:text": "prettier --check **/*.{json,md,mdx,yml}",
"lint:types": "tsc --project .",
"postinstall": "lerna bootstrap --hoist",
"prereset": "npm run clean",
"pretest": "npm run lint",
"publish": "npm run clean && npm run build && lerna publish",
"reset": "rimraf node_modules packages/*/node_modules website/node_modules",
"test": "jest"
},
"dependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "7.3.3",
"@babel/runtime": "^7.0.0",
"@docusaurus/core": "^2.0.0-alpha.23",
"@docusaurus/preset-classic": "^2.0.0-alpha.23",
"@material-ui/core": "4.1.1",
"@material-ui/icons": "4.2.0",
"@types/invariant": "2.2.30",
"@types/jest": "24.0.17",
"@types/lodash": "4.14.136",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"ajv": "6.10.0",
"antd": "3.19.5",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"classnames": "^2.0.0",
"codecov": "3.5.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "5.16.0",
"eslint-config-prettier": "5.0.0",
"eslint-config-vazco": "4.3.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "1.1.1",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-vazco": "1.0.0",
"graphql": "^14.0.0 || 0.8.0 - 14.0.0",
"husky": "2.4.1",
"invariant": "^2.0.0",
"jest": "24.8.0",
"lerna": "3.15.0",
"lint-staged": "9.2.1",
"lodash": "^4.0.0",
"lz-string": "1.4.4",
"prettier": "1.18.2",
"prop-types": "^15.5.7",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-feather": "2.0.3",
"react-frame-component": "4.1.0",
"react-test-renderer": "16.8.6",
"rimraf": "2.6.3",
"simpl-schema": "^1.0.0 || ^0.0.4",
"stylelint": "10.1.0",
"stylelint-config-prettier": "5.2.0",
"stylelint-prettier": "1.1.1",
"typescript": "3.5.3",
"universal-fetch": "1.0.0",
"warning": "^4.0.0"
},
"engines": {
"npm": ">=5.0.0"
}
}