-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.97 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
{
"name": "create-roses-backend",
"version": "0.2.4",
"description": "Simplify process of creating a TypeSafety backend with Node Js, Prisma, and TypeScript",
"main": "dist/index.mjs",
"scripts": {
"start": "node dist/index.mjs",
"build": "tsup src/index.ts --format esm --clean --sourcemap --minify --metafile",
"dev": "tsup src/index.ts --format esm --watch --clean --onSuccess \"node dist/index.mjs\"",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krsbx/create-roses-backend.git"
},
"keywords": [
"typescript",
"prisma",
"template",
"backend"
],
"exports": "./dist/index.mjs",
"bin": {
"create-roses-backend": "./dist/index.mjs"
},
"author": "krsbx",
"license": "MIT",
"bugs": {
"url": "https://github.com/krsbx/create-roses-backend/issues"
},
"homepage": "https://github.com/krsbx/create-roses-backend#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/figlet": "^1.5.4",
"@types/fs-extra": "^9.0.13",
"@types/gradient-string": "^1.1.2",
"@types/inquirer": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"chalk": "^5.0.1",
"commander": "^9.4.0",
"figlet": "^1.5.2",
"fs-extra": "^10.1.0",
"gradient-string": "^2.0.1",
"inquirer": "^9.0.2",
"ora": "^6.1.2"
}
}