-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1020 Bytes
/
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
{
"name": "seitz",
"version": "1.0.0",
"description": "",
"repository": "https://github.com/sandboxnu/seitz",
"author": "Ross Newman <rzn3102@gmail.com>",
"license": "MIT",
"packageManager": "pnpm@8.9.0",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.17.0",
"husky": "^8.0.0",
"prettier": "^3.0.3",
"typescript": "^5.0.2"
},
"scripts": {
"lint": "eslint . --ext .ts,.vue",
"lint:fix": "eslint . --fix --ext .ts,.vue",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"format": "pnpm prettier:fix && pnpm lint:fix",
"prepare": "husky install",
"dev": "pnpm --stream -r dev"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@sendgrid/mail": "^8.1.1",
"mongoose": "^7.5.2",
"short-unique-id": "^5.0.3"
}
}