-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.82 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.82 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "tailwind-react-primitives",
"version": "0.8.11",
"description": "React component primitives that provide utility props for Tailwind CSS",
"repository": {
"type": "git",
"url": "git+https://github.com/emortlock/tailwind-react-primitives.git"
},
"homepage": "https://emortlock.github.io/tailwind-react-primitives/",
"main": "./dist/index.cjs.js",
"module": "./dist/index.js",
"types": "./src/index.ts",
"scripts": {
"build": "rollup -c",
"docs": "rimraf styleguide && styleguidist --config ./site build",
"docs:deploy": "node ./build/deploy",
"lint": "eslint src --ext .ts,.tsx -c ./eslint.config.js",
"lint:fix": "npm run lint -- --fix",
"prestart": "cross-env TOOLS_ONLY=true NODE_ENV=development npm run build",
"release": "standard-version",
"start": "styleguidist --config ./site server --open",
"start:prod": "npm run prestart && cross-env NODE_ENV=production DEBUG=tailwind-react:* styleguidist --config ./site server",
"test": "cross-env BABEL_ENV=test jest"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"@babel/runtime": "*",
"react": "*",
"react-dom": "*",
"tailwindcss": "*"
},
"dependencies": {
"classnames": "^2.2.6",
"debug": "^4.1.1",
"lodash.includes": "^4.3.0",
"param-case": "^2.1.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@commitlint/config-conventional": "^7.1.2",
"@mortlock/prettier-config": "^1.1.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "^5.0.2",
"@testing-library/react": "^10.4.9",
"@types/classnames": "^2.2.10",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.10",
"@types/lodash.includes": "^4.3.6",
"@types/param-case": "^1.1.2",
"@types/prop-types": "^15.7.3",
"@types/react": "^16.9.46",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^3.10.1",
"autoprefixer": "^9.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^23.4.2",
"babel-loader": "^8.1.0",
"babel-plugin-add-react-displayname": "0.0.5",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-transform-rename-import": "^2.3.0",
"commitlint": "^10.0.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^2.5.1",
"gh-pages": "^2.0.0",
"glob-all": "^3.2.1",
"husky": "^1.1.4",
"jest": "^26.4.1",
"mini-css-extract-plugin": "^0.5.0",
"postcss": "^7.0.2",
"postcss-clean": "^1.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.1.0",
"purgecss-webpack-plugin": "^2.3.0",
"react": "^16.13.1",
"react-docgen-typescript": "^1.20.2",
"react-dom": "^16.13.1",
"react-styleguidist": "^11.0.8",
"rimraf": "^2.6.2",
"rollup": "^2.26.5",
"rollup-plugin-terser": "^7.0.0",
"standard-version": "^9.0.0",
"style-loader": "^0.23.0",
"tailwindcss": "^1.7.3",
"ts-jest": "^26.2.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"webpack": "^4.44.1"
},
"author": "Ed Mortlock",
"license": "MIT",
"keywords": [
"tailwindcss",
"react",
"react-component"
]
}