-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 932 Bytes
/
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
{
"name": "tailwindcss-full-bleed",
"version": "2.0.2",
"main": "src/index.js",
"types": "src/index.d.ts",
"license": "MIT",
"repository": "https://github.com/dgknca/tailwindcss-full-bleed",
"publishConfig": {
"access": "public"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"test": "jest",
"dev": "yarn tailwindcss -c ./website/tailwind.config.js -i ./website/styles/style.css -o ./website/styles/output.css --watch",
"deploy": "gh-pages -d website",
"format": "prettier -w '**/*.{js,ts,json}'"
},
"devDependencies": {
"gh-pages": "^5.0.0",
"jest": "^29.4.3",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7"
},
"peerDependencies": {
"tailwindcss": ">=3.0.0"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest/customMatchers.js"
]
}
}