-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.73 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.73 KB
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
105
106
{
"private": true,
"name": "dolphin-admin-server",
"version": "0.0.1",
"author": "Bruce Song <recall4056@gmail.com> (https://github.com/recallwei/)",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon",
"build": "pnpm clear && tsc --build",
"start": "cross-env NODE_ENV=production npm run build && ts-node --files ./dist/src/index.js",
"clear": "tsc --build --clean",
"prepare": "husky install",
"cspell:check": "cspell **",
"cspell:sort": "node ./scripts/cspell-sort.js",
"eslint:check": "eslint \"{src,scripts}/**/*.{ts,js,md}\" --color",
"eslint:fix": "pnpm check:lint -- --fix",
"prettier:check": "prettier --check --ignore-unknown .",
"prettier:fix": "prettier --write --ignore-unknown .",
"type:check": "tsc --pretty --noEmit",
"commit": "npx git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"prisma:generate": "prisma generate && prisma generate --schema=./src/prisma/mongo.schema.prisma",
"prisma:generate:watch": "prisma generate --watch && prisma generate --watch --schema=./src/prisma/mongo.schema.prisma",
"prisma:migrate:dev": "prisma migrate dev --skip-seed",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:migrate:mongo": "prisma db push --schema=./src/prisma/mongo.schema.prisma",
"prisma:seed": "prisma db seed",
"prisma:reset": "prisma migrate reset",
"prisma:studio": "prisma studio",
"prisma:validate": "prisma validate && prisma validate --schema=./src/prisma/mongo.schema.prisma",
"prisma:format": "prisma format && prisma format --schema=./src/prisma/mongo.schema.prisma"
},
"dependencies": {
"@ngneat/falso": "^7.1.1",
"@node-rs/bcrypt": "^1.7.3",
"@prisma/client": "^5.3.1",
"axios": "^1.5.1",
"body-parser": "^1.20.2",
"chalk": "4.1.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"express": "~4.18.2",
"figlet": "^1.6.0",
"gradient-string": "^2.0.2",
"jsonwebtoken": "^9.0.2",
"morgan": "~1.10.0",
"multer": "1.4.5-lts.1",
"socket.io": "^4.7.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/body-parser": "^1.19.3",
"@types/cors": "^2.8.14",
"@types/express": "4.17.18",
"@types/figlet": "^1.5.6",
"@types/gradient-string": "^1.1.3",
"@types/jsonwebtoken": "^9.0.3",
"@types/morgan": "^1.9.5",
"@types/multer": "^1.4.7",
"@types/node": "20.7.0",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"cspell": "^7.3.6",
"cz-conventional-changelog": "^3.3.0",
"cz-git": "^1.7.1",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prettier-plugin-prisma": "^5.0.0",
"prism": "^4.1.2",
"prisma": "^5.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"packageManager": "pnpm@8.6.0",
"engines": {
"node": ">=16.14.0"
},
"prisma": {
"schema": "src/prisma/schema.prisma",
"seed": "ts-node src/prisma/seed.ts"
},
"license": "MIT"
}