-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 2 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
{
"name": "planetas_api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"build": "tsc && tsc-alias",
"dev": "ts-node-dev -r tsconfig-paths/register src/index.ts",
"start": "node build/index.js",
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint **/*.ts --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prisma:init": "prisma init",
"prisma:migrate": "prisma migrate dev --preview-feature --schema=./src/config/prisma/schema.prisma",
"prisma:generate": "prisma generate --schema=./src/config/prisma/schema.prisma",
"prisma:generate-watch": "prisma generate --watch --schema=./src/config/prisma/schema.prisma",
"prisma:seed": "ts-node src/config/prisma/seed.ts",
"prepare": "husky install",
"postinstall": "npm run prisma:generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nsdonato/planetas_api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nsdonato/planetas_api/issues"
},
"homepage": "https://github.com/nsdonato/planetas_api#readme",
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/morgan": "1.9.3",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"husky": "8.0.1",
"jest": "28.1.3",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"prisma": "^5.0.0",
"ts-node": "^10.9.1",
"ts-node-dev": "2.0.0",
"tsc-alias": "1.7.0",
"tsconfig-paths": "4.1.0",
"typescript": "4.7.4"
},
"dependencies": {
"@prisma/client": "^5.0.0",
"cors": "2.8.5",
"dotenv": "16.0.1",
"express": "4.18.1"
},
"lint-staged": {
"*.(ts|tsx)": [
"npm run lint:fix",
"npm run prettier:fix",
"git add ."
]
}
}