-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.52 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
41
42
43
44
45
46
47
48
49
50
{
"private": true,
"name": "temporal-survey",
"description": "",
"license": "",
"scripts": {
"build": "npm run build:css && npm run build:remix && npm run build:temporal",
"build:remix": "remix build",
"build:temporal": "tsc --build ./temporal/tsconfig.json",
"build:css": "tailwindcss -i ./styles/tailwind.css -o ./app/tailwind.css --minify",
"dev": "npm-run-all -l build:temporal --parallel dev:css dev:temporal dev:remix start:worker",
"dev:remix": "remix dev",
"dev:temporal": "tsc --build --watch ./temporal/tsconfig.json",
"dev:css": "tailwindcss -i ./styles/tailwind.css -o ./app/tailwind.css --watch",
"postinstall": "remix setup node",
"start": "remix-serve build",
"start:worker": "node ./build-temporal/temporal/src/worker"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"dependencies": {
"@prisma/client": "^3.8.1",
"@remix-run/react": "^1.1.3",
"@remix-run/serve": "^1.1.3",
"nodemailer": "^6.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.1.3",
"temporalio": "^0.17.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@remix-run/dev": "^1.1.3",
"@tsconfig/node16": "^1.0.2",
"@types/nodemailer": "^6.4.4",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/uuid": "^8.3.4",
"concurrently": "^7.0.0",
"npm-run-all": "^4.1.5",
"prisma": "^3.8.1",
"tailwindcss": "^3.0.18",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}