-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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": "tailwindcss-webpack-plugin-monorepo",
"privite": true,
"engines": {
"node": ">=16.0.0"
},
"description": "Design in Devtools for Tailwind CSS",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"files": [
"dist/*"
],
"scripts": {
"prepare": "husky install",
"release": "pnpm -r --filter='./packages/*' publish",
"build": "pnpm -r --filter='./packages/*' run build",
"test": "vitest run --no-threads -c ./vitest.config.ts",
"lint:fix": "eslint ./packages --ext js,jsx,ts,tsx --fix"
},
"keywords": [
"Tailwind CSS",
"tailwind",
"Design in Devtools",
"Webpack Plugin",
"Vite Plugin"
],
"lint-staged": {
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@types/node": "^18.8.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"lint-staged": "^12.5.0",
"prettier": "^2.7.1",
"puppeteer": "^13.7.0",
"supertest": "^6.3.0",
"tree-kill": "^1.2.2",
"typescript": "^4.8.4",
"vitest": "^0.9.4",
"c8": "^7.12.0"
}
}