-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
45 lines (45 loc) · 1015 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
39
40
41
42
43
44
45
{
"name": "kirimase",
"version": "0.0.60",
"description": "A Rails-like CLI for building full-stack Next.js apps faster",
"main": "index.js",
"type": "module",
"bin": {
"kirimase": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"dev2": "node dist/index.js",
"dev": "tsc -w"
},
"keywords": [
"cli",
"nextjs",
"drizzle",
"next-auth",
"rails",
"shadcn",
"authjs"
],
"author": "Nico Albanese",
"license": "ISC",
"dependencies": {
"@inquirer/prompts": "^3.0.1",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"consola": "^3.2.3",
"execa": "^8.0.1",
"figlet": "^1.7.0",
"ora": "^8.0.1",
"pluralize": "^8.0.0",
"strip-json-comments": "^5.0.1"
},
"devDependencies": {
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"typescript": "^5.1.6"
}
}