-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.11 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
{
"private": true,
"engines": {
"npm": ">=8.0.0 <10.0.0",
"node": ">=18.0.0 <19.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "npx prettier --write \"{__tests__,components,pages,styles}/**/*.{ts,tsx,js,jsx}\"",
"lint": "next lint && npx prettier --check \"{__tests__,components,pages,styles}/**/*.{ts,tsx,js,jsx}\" && npx tsc --noEmit"
},
"dependencies": {
"@cowprotocol/cow-sdk": "^5.4.1-RC.0",
"@headlessui/react": "^1.7.3",
"@heroicons/react": "^2.0.12",
"@privy-io/react-auth": "^1.77.0",
"@privy-io/server-auth": "^1.7.3",
"@tailwindcss/forms": "^0.5.3",
"next": "latest",
"react": "18.2.0"
},
"devDependencies": {
"@tsconfig/next": "^2.0.0",
"@tsconfig/node18": "^18.2.0",
"@tsconfig/strictest": "^2.0.1",
"@types/node": "^18",
"@types/react": "18.2.0",
"autoprefixer": "^10.4.7",
"dotenv-cli": "^6.0.0",
"eslint": "^8.23.0",
"eslint-config-next": "12.2.5",
"postcss": "^8.4.31",
"tailwindcss": "^3.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}