forked from mantinedev/mantine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "mantine",
"private": true,
"workspaces": [
"src/*"
],
"version": "1.3.1",
"description": "Mantine Components Monorepo",
"main": "index.js",
"repository": "https://github.com/mantinedev/mantine.git",
"author": "Vitaly Rtishchev <[email protected]>",
"license": "MIT",
"scripts": {
"postinstall": "cd docs && yarn",
"syncpack": "syncpack list-mismatches",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"build": "esno scripts/build",
"jest": "jest",
"clean": "rimraf src/*/{esm,cjs,lib,dist} src/**/*.tsbuildinfo",
"storybook": "esno scripts/storybook-start",
"test": "npm run syncpack && npm run typecheck && npm run lint && npm run jest",
"docs": "npm run docs:clean && npm run docs:docgen && npm run docs:sizes && cd docs && npm start",
"docs:docgen": "esno scripts/docgen",
"docs:sizes": "esno scripts/calculate-sizes",
"docs:clean": "cd docs && npm run clean",
"docs:build": "npm run docs:clean && npm run docs:docgen && npm run docs:sizes && cd docs && npm run build",
"docs:deploy": "npm run docs:build && gh-pages -d docs/public",
"_release:no-test": "esno scripts/release",
"_release": "npm run release:prepare && esno scripts/release",
"_release:alpha": "npm run _release minor -- --stage alpha --tag next",
"release:prepare": "npm run clean && npm test",
"release:patch": "npm run _release patch && npm run docs:deploy",
"release:minor": "npm run _release minor && npm run docs:deploy",
"release:major": "npm run _release major && npm run docs:deploy"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/react": "^6.2.9",
"@sucrase/jest-plugin": "^2.1.0",
"@testing-library/react-hooks": "^7.0.0",
"@types/enzyme": "^3.10.8",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"@types/jest-axe": "^3.5.1",
"@types/react": "^17.0.8",
"@types/react-custom-scrollbars": "^4.0.7",
"@types/react-dom": "^17.0.5",
"@types/react-router-dom": "^5.1.7",
"@types/react-transition-group": "^4.4.1",
"@types/resize-observer-browser": "^0.1.5",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"chalk": "^4.1.1",
"enzyme": "^3.11.0",
"esbuild": "^0.12.5",
"esbuild-jest": "^0.5.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"esno": "^0.6.0",
"execa": "^5.0.1",
"fast-glob": "^3.2.5",
"fs-extra": "^10.0.0",
"gh-pages": "^3.2.0",
"gzip-size": "^6.0.0",
"jest": "^26.6.3",
"jest-axe": "^4.1.0",
"new-github-release-url": "^1.0.0",
"open": "^8.2.0",
"react-docgen-typescript": "1.21.0",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.50.5",
"rollup-plugin-esbuild": "^4.2.3",
"rollup-plugin-node-externals": "^2.2.0",
"rollup-plugin-visualizer": "^5.5.0",
"simple-git": "^2.39.0",
"storybook-addon-turbo-build": "^1.0.0-beta.0",
"syncpack": "^5.7.11",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "4.1.3",
"yargs": "^17.0.1"
},
"dependencies": {
"@modulz/radix-icons": "^4.0.0",
"clsx": "^1.1.1",
"react": "^17.0.2",
"react-custom-scrollbars": "^4.2.1",
"react-jss": "^10.6.0",
"react-router-dom": "^5.2.0",
"react-textarea-autosize": "^8.3.2",
"react-transition-group": "^4.4.2"
},
"resolutions": {
"**/@babel/preset-env": "~7.12.0"
}
}