-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.23 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.23 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
{
"name": "smart-proposal",
"version": "0.1.0",
"private": true,
"description": "Smart Proposal monorepo",
"packageManager": "pnpm@9.10.0",
"engines": {
"node": ">=18.18.0"
},
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"lint": "turbo run lint",
"format": "turbo run format",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"express": "^4.19.2",
"next": "^14.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.2",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-config-turbo": "^2.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"turbo": "^2.0.6",
"typescript": "^5.5.4"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": [
"prettier --write"
]
}
}