-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.57 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
51
52
53
54
55
56
{
"name": "rank-overlay-b0ed",
"private": true,
"description": "",
"license": "MIT",
"author": "DaCurse",
"sideEffects": false,
"scripts": {
"build": "run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "cross-env NODE_ENV=development binode -- @remix-run/dev:remix dev",
"format": "prettier --write .",
"generate:css": "tailwindcss -i ./app/styles/tailwind.css -o ./app/styles/tailwind_out.css",
"lint": "eslint --fix --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve build",
"typecheck": "tsc -b"
},
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"dependencies": {
"@remix-run/node": "^1.5.1",
"@remix-run/react": "^1.5.1",
"@remix-run/serve": "^1.5.1",
"lru-cache": "^7.7.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.5.1",
"@remix-run/eslint-config": "^1.5.1",
"@types/eslint": "^8.4.1",
"@types/lru-cache": "^7.6.1",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"binode": "^1.0.5",
"cross-env": "^7.0.3",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"npm-run-all": "^4.1.5",
"prettier": "2.6.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=14"
}
}