-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
84 lines (84 loc) · 2.31 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "create-jd-app",
"version": "5.0.0",
"private": false,
"scripts": {
"build": "rm -rf dist && tsc -p . && tsc-alias -p tsconfig.json && pnpm postbuild",
"postbuild": "ts-node -r tsconfig-paths/register scripts/copyFiles",
"patch": "npm version patch --no-git-tag-version",
"dev": "npm link && cd dist && npm link create-jd-app",
"test:ts": "ts-node -r tsconfig-paths/register src",
"test:js": "node dist/index.js",
"lint": "eslint . --fix --ext .ts,.tsx,.js,.jsx",
"prepare": "husky install"
},
"files": [
"dist",
"template"
],
"main": "dist/index.js",
"bin": {
"create-jd-app": "dist/index.js"
},
"dependencies": {
"chalk": "^4.1.0",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.4",
"ora": "^5.4.0",
"prettier": "^3.2.5"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.2",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^9.0.0",
"@types/node": "^18.6.4",
"@types/ora": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"lint-staged": "^13.0.4",
"sort-package-json": "^2.1.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.{js,json}": "prettier --write",
"packages/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"examples/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"package.json": "sort-package-json"
},
"description": "Create modern type safed Solid web application within seconds",
"repository": {
"type": "git",
"url": "git+https://github.com/OrJDev/create-jd-app.git"
},
"keywords": [
"JDev",
"pRPC",
"TypeScript",
"Tailwind",
"Solid",
"SolidStart"
],
"author": "OrJDev",
"bugs": {
"url": "https://github.com/OrJDev/create-jd-app/issues"
},
"homepage": "https://github.com/OrJDev/create-jd-app#readme",
"packageManager": "[email protected]"
}