-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.34 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@lasalefamine/create-app",
"version": "1.1.10",
"description": "Opinionated app generator",
"keywords": [
"generator",
"web",
"app",
"next.js",
"react",
"typescript",
"boilerplate",
"starter"
],
"license": "MIT",
"repository": "LasaleFamine/create-app",
"author": {
"name": "Alessio Occhipinti",
"email": "[email protected]",
"url": "https://godev.space"
},
"scripts": {
"dev": "ts-node src/cli.ts",
"build": "rimraf dist && tsc",
"prepack": "yarn build",
"test": "tsc --noEmit --sourceMap && eslint src/*.ts",
"release": "git pull && standard-version && git push --follow-tags",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint"
},
"engines": {
"node": ">=16"
},
"type": "module",
"dependencies": {
"chalk": "5.3.0",
"cpy": "8",
"empty-dir": "2.0.0",
"make-dir": "3.1.0",
"meow": "10.1.4",
"ora": "6.1.2",
"pkg-install": "1.0.0",
"prompts": "2.4.2",
"read-pkg-up": "9.1.0",
"rimraf": "5.0.5",
"update-notifier": "5.1.0",
"validate-npm-package-name": "3.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@lasalefamine/eslint-config": "3.0.3",
"@lasalefamine/eslint-config-base": "3.0.3",
"@lasalefamine/tsconfig": "0.1.1",
"@types/chalk": "2.2.0",
"@types/empty-dir": "2.0.4",
"@types/node": "22.7.5",
"@types/prompts": "2.4.9",
"@types/rimraf": "4.0.5",
"@types/update-notifier": "6.0.8",
"@types/validate-npm-package-name": "4.0.2",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"ava": "3.15.0",
"eslint": "8.50.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"nyc": "15.1.0",
"standard-version": "9.5.0",
"ts-node": "10.9.2",
"typescript": "5.6.2"
},
"files": [
"dist",
"templates",
"!*.test.*"
],
"exports": "./dist",
"bin": {
"lf-create-app": "./dist/cli.js"
},
"nyc": {
"all": true,
"extension": [
".ts"
],
"include": [
"dist",
"src"
],
"exclude": [
"**/*.d.ts",
"**/*.test.ts"
],
"reporter": [
"lcov",
"text"
]
}
}