-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.43 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
{
"private": true,
"name": "wordle",
"description": "Wordle game using remix",
"license": "",
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -i ./styles/tailwind.css -o ./app/tailwind.css --minify",
"lint": "tsc --noEmit && eslint app --ext .ts,.tsx --quiet",
"dev": "concurrently \"npm run dev:css\" \"cross-env NODE_ENV=development netlify dev\"",
"dev:css": "tailwindcss -i ./styles/tailwind.css -o ./app/tailwind.css --watch",
"postinstall": "remix setup node",
"prepare": "husky install"
},
"dependencies": {
"@netlify/functions": "^0.10.0",
"@remix-run/netlify": "^1.1.3",
"@remix-run/react": "^1.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-use": "^17.3.2",
"recoil": "^0.6.1",
"remix": "^1.1.3"
},
"devDependencies": {
"@remix-run/dev": "^1.1.3",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.22",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}