-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.46 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
{
"name": "@area17/a17-tailwind-plugins",
"version": "4.0.6",
"author": "A17 <dev@area17.com> (https://area17.com/)",
"description": "A collection of Tailwind plugins to help build responsive design systems in collaboration with A17 design and development build methodologies",
"main": "index.js",
"scripts": {
"test": "jest --watchAll",
"dev": "npx tailwindcss -i ./docs/input.css -o ./docs/tailwind.css",
"watch:dev": "npx tailwindcss -i ./docs/input.css -o ./docs/tailwind.css --watch",
"prod": "NODE_ENV=production npx tailwindcss -i ./docs/input.css -o ./docs/tailwind.css --minify",
"sync": "browser-sync start --config bs-config.js --no-open",
"watch": "npm run sync & npm run watch:dev",
"eslint": "eslint .",
"prettier": "prettier . --write"
},
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.19",
"browser-sync": "^3.0.2",
"eslint": "^9.5.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-prettier": "~5.1.3",
"jest": "~29.7.0",
"postcss": "^8.4.38",
"prettier": "3.3.2",
"qs": "^6.12.1",
"tailwindcss": "^3.4.4"
},
"dependencies": {
"dotenv": "~16.4.5"
},
"peerDependencies": {
"tailwindcss": "3.x"
},
"homepage": "https://github.com/area17/tailwind-plugins#readme",
"bugs": {
"url": "https://github.com/area17/tailwind-plugins/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/area17/tailwind-plugins.git"
}
}