-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "tauri-nextjs-api-routes",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"tauri": "tauri",
"lint": "next lint",
"build:server": "npx tsx ./build-server.ts",
"package:server": "npm run build:server && pkg dist/server/server.js -o ./src-tauri/bin/server-aarch64-apple-darwin"
},
"dependencies": {
"@fastify/cors": "^8.2.1",
"@tauri-apps/api": "^1.2.0",
"fastify": "^4.15.0",
"fastify-cors": "^6.1.0",
"next": "13.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.5.5"
},
"devDependencies": {
"@tauri-apps/cli": "^1.2.3",
"@types/node": "16.11.18",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11",
"esbuild": "^0.17.14",
"eslint": "8.7.0",
"eslint-config-next": "13.2.4",
"pkg": "^5.8.0",
"prettier": "^2.4.1"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
}
}