-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.49 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
{
"name": "deimos",
"version": "1.0.0",
"type": "module",
"private": true,
"author": "Alan Morel",
"license": "GNU",
"description": "Deimos",
"repository": {
"type": "git",
"url": "https://github.com/AlanMorel/deimos.git"
},
"scripts": {
"dev": "nodemon --config ./nodemon.config.json",
"lint": "eslint ./src --fix",
"start": "node --loader ts-paths-esm-loader ./src/index.ts",
"ts:check": "tsc --noEmit"
},
"dependencies": {
"@prisma/client": "^5.5.2",
"@types/node": "^20.9.0",
"@types/uuid": "^9.0.7",
"dotenv": "^16.3.1",
"picocolors": "^1.0.0",
"prisma": "^5.5.2",
"protobufjs": "^7.2.5",
"ts-paths-esm-loader": "^1.4.3",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.1",
"@commitlint/config-conventional": "^18.4.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-no-relative-import-paths": "^1.5.3",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-security": "^1.7.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3"
},
"prisma": {
"schema": "./src/database/schema.prisma"
}
}