-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "next-in-line",
"type": "module",
"author": "Senči",
"license": "MIT",
"private": false,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"copy-frontend": "cp -r apps/frontend/dist/* apps/backend/public",
"clean": "pnpm run clean-packages && pnpm run clean-dist",
"clean-packages": "rm -rf node_modules && pnpm -r exec rm -rf node_modules",
"clean-dist": "rm -rf dist && pnpm -r exec rm -rf dist"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"dotenv-cli": "^8.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"typescript": "5.5.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"dependencies": {
"eslint-plugin-vue": "^9.30.0"
},
"workspaces": [
"apps/*",
"packages/*"
]
}