-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
31 lines (31 loc) · 1.2 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
{
"name": "nodeshuttle-example",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run build && concurrently --names \"next, shuttle\" --kill-others \"next dev\" \"cargo shuttle run --working-directory ./backend/ --port 9999\"",
"build": "next build && next export -o ./backend/static && cargo build --manifest-path ./backend/Cargo.toml",
"start": "cargo shuttle project new --working-directory ./backend/",
"lint": "next lint",
"shuttle-login": "cargo shuttle login --working-directory ./backend/",
"deploy": "npm run build && cargo shuttle deploy --working-directory ./backend/ --allow-dirty",
"stop": "cargo shuttle project rm --working-directory ./backend/"
},
"dependencies": {
"@next/font": "13.2.1",
"@types/node": "18.14.2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"next": "13.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.5",
"zustand": "^4.3.6"
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.7"
}
}