This repository has been archived by the owner on Feb 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
109 lines (109 loc) · 2.86 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "remix-vite",
"version": "0.3.1",
"description": "Static file serving and directory listing",
"keywords": [
"remix",
"remix-vite",
"server",
"hmr",
"vite",
"react",
"hot",
"reload"
],
"repository": "sudomf/remix-vite",
"license": "MIT",
"main": "./lib.js",
"module": "./lib.esm.js",
"types": "./declarations/src/entries/lib.d.ts",
"bin": {
"remix-vite": "./cli.js"
},
"files": [
"declarations/**/*.d.ts",
"cli.js",
"lib.js",
"lib.esm.js"
],
"engines": {
"node": ">= 14"
},
"scripts": {
"dev": "run-p dev:**",
"dev:watch": "node tools/build --dev",
"dev:serve": "cd examples/complex && nodemon ../../cli --host 0.0.0.0 --watch ../../cli.js",
"start": "node ./build/main.js",
"build": "node tools/build.js && tsc --emitDeclarationOnly",
"lint:code": "eslint --fix src/**/*.ts",
"lint:style": "prettier --write .",
"lint": "yarn lint:code && yarn lint:style",
"format": "prettier --write .",
"prepare": "husky install config/husky && yarn build"
},
"dependencies": {
"@babel/core": "7.20.2",
"@babel/generator": "7.20.2",
"@babel/parser": "7.20.2",
"@babel/traverse": "7.20.1",
"@babel/types": "7.20.2",
"@remix-run/dev": "^1.8.2",
"@remix-run/express": "^1.8.2",
"@remix-run/server-runtime": "^1.8.2",
"@vitejs/plugin-react": "2.2.0",
"args": "5.0.3",
"cross-fetch": "3.1.5",
"dotenv": "16.0.3",
"express": "4.18.2",
"jsesc": "3.0.2",
"vite": "3.2.2",
"vite-tsconfig-paths": "3.5.2"
},
"devDependencies": {
"@types/args": "5.0.0",
"@types/babel__core": "7.1.19",
"@types/babel__generator": "7.6.4",
"@types/babel__traverse": "7.18.2",
"@types/express": "4.17.14",
"@types/jsesc": "3.0.1",
"@vercel/style-guide": "3.0.0",
"chokidar": "3.5.3",
"esbuild": "0.15.13",
"eslint": "8.19.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"nodemon": "2.0.20",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.6.4"
},
"prettier": "@vercel/style-guide/prettier",
"eslintConfig": {
"extends": [
"./node_modules/@vercel/style-guide/eslint/node.js",
"./node_modules/@vercel/style-guide/eslint/typescript.js"
],
"parserOptions": {
"project": "tsconfig.json"
},
"rules": {
"no-await-in-loop": 0,
"eslint-comments/disable-enable-pair": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-unsafe-assignment": 0,
"@typescript-eslint/no-unsafe-call": 0,
"@typescript-eslint/no-unsafe-member-access": 0,
"@typescript-eslint/no-misused-promises": 0
}
},
"lint-staged": {
"*.{json,css,scss,md,html,yml,yaml}": [
"prettier --write"
],
".{js,ts}": [
"eslint --fix"
]
}
}