-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "@kawalcovid19/tailwind-preset-wbw",
"version": "0.1.1",
"description": "Tailwind preset used across the Kawal COVID-19 + WargaBantuWarga projects.",
"source": "./src/tailwind-preset-wbw.js",
"exports": "./dist/tailwind-preset-wbw.modern.js",
"main": "./dist/tailwind-preset-wbw.js",
"module": "./dist/tailwind-preset-wbw.module.js",
"types": "./dist/tailwind-preset-wbw.d.ts",
"repository": "https://github.com/kawalcovid19/tailwind-preset-wbw.git",
"author": "Kawal COVID-19 <admin@kawalcovid19.id>",
"license": "MIT",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf dist",
"build": "microbundle",
"dev": "microbundle watch",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"prepare": "yarn clean && yarn build && husky install"
},
"devDependencies": {
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/typography": "^0.4.1",
"@types/tailwindcss": "^2.2.1",
"eslint": "^7.31.0",
"eslint-config-kentcdodds": "^19.1.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"microbundle": "^0.13.3",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"tailwindcss": "^2.2.7",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/typography": "^0.4.1",
"tailwindcss": "^2.2.7"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
}
}