-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 KB
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": "create-dedevs-app",
"version": "0.1.3",
"main": "index.js",
"repository": "https://github.com/DeDevsClub/create-dedevs-app.git",
"author": "Buns <bunsthedev@gmail.com>",
"license": "MIT",
"type": "module",
"description": "CLI tool with apps to create a new dedevs app.",
"scripts": {
"lint": "eslint .",
"start": "node index.js",
"apps:install": "make install",
"apps:build": "make build",
"apps:dev": "make dev",
"api": "make api",
"docs": "make docs",
"hashnode": "make hashnode",
"nextjs": "make nextjs",
"portfolio": "make portfolio"
},
"dependencies": {
"@babel/core": "^7.26.10",
"clsx": "^2.1.1",
"inquirer": "^12.5.0",
"typescript": "^5.8.2"
},
"bin": {
"create-dedevs-app": "index.js"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/json5": "^0.0.29",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.5",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript-eslint": "^8.28.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"plugins": [
"@typescript-eslint",
"prettier"
],
"rules": {
"prettier/prettier": "error"
}
}
}