-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 894 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
{
"name": "flowbite-qwik-root",
"version": "1.0.0",
"description": "",
"engineStrict": true,
"engines": {
"pnpm": ">=9",
"node": ">=20"
},
"scripts": {
"build": "pnpm -r build",
"build:watch": "run-p build:tsc:watch",
"build:tsc": "tsc --noEmit && tsc --build",
"build:tsc:watch": "tsc --build --watch",
"clean": "rm -rf node_modules && pnpm -r exec rm -rf node_modules && pnpm -r exec rm -rf dist",
"prebuild": "tsc --build --clean",
"test": "pnpm -r test",
"test:coverage": "pnpm -r test:coverage",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.30",
"@typescript-eslint/parser": "^7.13.0",
"husky": "^9.0.11",
"typescript": "^5.4.5"
},
"dependencies": {
"npm-run-all": "^4.1.5",
"vitest": "^1.6.0"
}
}