-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "remix-template-netlify-ts",
"private": true,
"description": "",
"license": "",
"sideEffects": false,
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/main.css -o src/styles/main.css",
"dev": "concurrently \"npm run dev:css\" \"cross-env NODE_ENV=development netlify dev\"",
"dev:css": "tailwindcss -w -i ./styles/main.css -o src/styles/main.css",
"postinstall": "remix setup node",
"start": "cross-env NODE_ENV=production netlify dev"
},
"dependencies": {
"@netlify/functions": "^0.10.0",
"@remix-run/netlify": "^1.3.2",
"@remix-run/react": "^1.3.2",
"@xstate/inspect": "^0.6.4",
"@xstate/react": "^2.0.1",
"classnames": "^2.3.1",
"cross-env": "^7.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remix": "^1.3.2",
"xstate": "^4.30.6"
},
"devDependencies": {
"@remix-run/dev": "^1.3.2",
"@remix-run/eslint-config": "^1.3.2",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.4.4",
"concurrently": "^7.0.0",
"eslint": "^8.11.0",
"postcss": "^8.4.12",
"tailwindcss": "^3.0.23",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=14"
}
}