-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "rate-my-openapi",
"version": "1.18.0",
"scripts": {
"clean": "git clean -Xfde !.env",
"dev": "concurrently -n api,web 'npm run dev --workspace apps/api' 'npm run dev --workspace apps/web'",
"dev:api": "npm run dev --workspace apps/api",
"build": "tsc --build",
"format": "prettier --write .",
"lint": "npm run lint --workspaces",
"release": "npm version minor",
"version": "npm version $npm_package_version --workspaces && git add **/package.json",
"postversion": "git push --tags && git push",
"prepare": "npx husky install"
},
"lint-staged": {
"**/*.{ts,json,md,yml,js,css,html}": [
"prettier --write"
]
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"concurrently": "^8.2.2",
"glob": "^10.3.10",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"dependencies": {
"@sendgrid/mail": "^8.1.1",
"@slack/web-api": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"openai": "^4.8.0",
"prettier-plugin-tailwindcss": "^0.5.11"
}
}