-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
107 lines (107 loc) · 3.51 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
{
"name": "tailwind-bootstrap-grid",
"version": "5.1.0",
"description": "Tailwind CSS plugin to generate Bootstrap flexbox grid system.",
"keywords": [
"bootstrap",
"flexbox",
"grid",
"grid system",
"layout",
"rtl",
"tailwindcss"
],
"repository": "karolis-sh/tailwind-bootstrap-grid",
"license": "MIT",
"author": "Karolis Šarapnickis <[email protected]>",
"main": "lib/index.js",
"types": "types/index.d.ts",
"files": [
"lib",
"types"
],
"scripts": {
"build": "run-p build:*",
"build:demo": "cross-env NODE_ENV=production webpack --mode production --config demo/webpack.config.js",
"build:sample": "run-p build:sample:*",
"build:sample:prefix-separator": "cd samples/prefix-separator && NODE_ENV=production tailwindcss --no-autoprefixer -i input.css -o output.css",
"build:sample:purge": "cd samples/purge && NODE_ENV=production tailwindcss -i input.css -o output.css",
"build:sample:default": "cd samples/default && NODE_ENV=production tailwindcss -i input.css -o output.css",
"build:sample:tw-default": "cd samples/tw-default && NODE_ENV=production tailwindcss -i input.css -o output.css",
"clean": "rm -rf build && rm -rf samples/*/output.css",
"commit": "cz",
"format": "run-p format:*",
"format:js": "prettier --write .",
"format:package-json": "sort-package-json",
"lint": "run-p lint:*",
"lint:js": "eslint . --cache",
"lint:md": "markdownlint-cli2 '**/*.md' '!node_modules' '!**/node_modules' '!**/CHANGELOG.md'",
"qa": "run-p test lint",
"release": "npm i && run-s clean build qa && standard-version --no-verify && git push --follow-tags --no-verify && npm publish",
"dev": "webpack serve --mode development --config demo/webpack.config.js",
"tdd": "vitest --globals",
"test": "vitest --globals --watch=false",
"try-demo": "run-s clean build:demo && serve build",
"prepare": "husky install"
},
"lint-staged": {
"*.js": "eslint --fix",
"package.json": "sort-package-json"
},
"dependencies": {
"joi": "^17.5.0",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@k.sh/eslint-plugin": "^0.9.1",
"@k.sh/prettier-config": "^0.5.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^1.6.22",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.55.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-vitest": "^0.3.10",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"markdownlint-cli2": "^0.11.0",
"mini-css-extract-plugin": "^2.7.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.20",
"postcss-loader": "^7.0.2",
"prettier": "^3.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet-async": "^2.0.1",
"react-hot-loader": "^4.13.0",
"react-live": "^2.2.3",
"serve": "^14.2.1",
"sort-package-json": "^2.6.0",
"standard-version": "^9.5.0",
"tailwindcss": "^3.3.5",
"vitest": "^0.34.6",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"peerDependencies": {
"tailwindcss": "^3"
},
"engines": {
"node": ">= 12.0.0"
},
"volta": {
"node": "20.9.0"
}
}