-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 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
{
"name": "@webeetle/windy",
"version": "0.10.3",
"description": "UI Kit in React based on Tailwind",
"main": "dist/bundle.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/webeetle/windy"
},
"bugs": {
"url": "https://github.com/webeetle/windy/issues"
},
"scripts": {
"test": "jest --coverage",
"test:dev": "jest --coverage --watch",
"build": "npm run test -- -u && rollup -c && npm run create-ts-types",
"create-ts-types": "npx tsc"
},
"author": "Webeetle",
"license": "Apache 2.0",
"dependencies": {
"@headlessui/react": "^1.3.0",
"@types/react": "^17.0.13",
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-proptypes": "^1.0.0",
"tailwind-override": "^0.0.7"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-external-helpers": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-typescript": "^8.2.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.1.9",
"@vitro/cli": "^0.2.5",
"babel-jest": "^27.0.5",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
"jest": "^27.0.5",
"react-test-renderer": "^17.0.2",
"rollup": "^2.52.2",
"rollup-jest": "^1.1.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"tailwindcss": "^2.2.2",
"typescript": "^4.3.5"
}
}