-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.59 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
53
54
55
{
"name": "create-hats-app",
"type": "module",
"version": "0.0.14",
"description": "",
"main": "dist/index.js",
"bin": {
"create-hats-app": "./dist/index.js"
},
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"build": "tsc",
"next:dev": "pnpm run --filter create-hats-next-app dev",
"next:build": "pnpm run --filter create-hats-next-app build",
"vite:dev": "pnpm run --filter create-hats-vite-app dev",
"vite:build": "pnpm run --filter create-hats-vite-app build",
"remix:dev": "pnpm run --filter create-hats-remix-vite-app dev",
"remix:build": "pnpm run --filter create-hats-remix-vite-app build"
},
"files": [
"dist/**/*",
"templates/**/*",
"!templates/**/node_modules/**",
"!templates/**/dist/**",
"!templates/next/.next/**",
"bin/**/*"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"fs-extra": "^11.2.0",
"parser": "link:@typescript/eslint/parser",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.12",
"typescript": "^5.5.4"
},
"dependencies": {
"@types/prompts": "^2.4.9",
"cac": "^6.7.14",
"cross-spawn": "^7.0.3",
"picocolors": "^1.0.0",
"prompts": "^2.4.2"
}
}