-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.57 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.57 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
{
"name": "temporal-nextjs-oneclick",
"private": true,
"scripts": {
"dev": "npm-run-all -l build:temporal --parallel dev:temporal dev:next start:worker",
"dev:next": "next dev",
"dev:temporal": "tsc --build --watch ./temporal/tsconfig.json",
"build": "npm-run-all -l --parallel build:next build:temporal",
"build:next": "next build",
"build:temporal": "tsc --build ./temporal/tsconfig.json",
"start": "npm run dev",
"start:worker": "node ./temporal/lib/worker",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint ."
},
"dependencies": {
"@headlessui/react": "^1.4.1",
"@heroicons/react": "^1.0.4",
"@tailwindcss/aspect-ratio": "^0.2.1",
"@tailwindcss/forms": "^0.3.3",
"@temporalio/activity": "^1.11.6",
"@temporalio/client": "^1.11.6",
"@temporalio/worker": "^1.11.6",
"@temporalio/workflow": "^1.11.6",
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^8.0.3",
"swr": "^1.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/node": "^22.9.1",
"@types/react": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"autoprefixer": "^10.2.6",
"eslint": "^8.57.1",
"eslint-config-next": "^15.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"prettier": "^3.4.2",
"tailwindcss": "^2.2.4",
"typescript": "^5.6.3"
}
}