-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
34 lines (34 loc) · 962 Bytes
/
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
{
"private": true,
"name": "backend-xstate-machines",
"description": "",
"license": "",
"scripts": {
"build": "npm run build:app:css && npm run build:remix",
"build:remix": "remix build",
"build:app:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:app:css\" \"remix dev\"",
"dev:app:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css --watch",
"postinstall": "remix setup node",
"start": "remix-serve build"
},
"dependencies": {
"@remix-run/react": "^1.3.5",
"@remix-run/serve": "^1.3.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"remix": "^1.3.5",
"xstate": "^4.31.0"
},
"devDependencies": {
"@remix-run/dev": "^1.3.5",
"@tailwindcss/typography": "^0.5.2",
"@types/node": "^17.0.23",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.0.23"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}