-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathpackage.json
116 lines (116 loc) · 3.04 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
110
111
112
113
114
115
116
{
"name": "@remix-run/dev",
"version": "1.19.2-pre.2",
"description": "Dev tools and CLI for Remix",
"homepage": "https://remix.run",
"bugs": {
"url": "https://github.com/remix-run/remix/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/remix-run/remix",
"directory": "packages/remix-dev"
},
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"remix": "dist/cli.js"
},
"dependencies": {
"@babel/core": "^7.21.8",
"@babel/generator": "^7.21.5",
"@babel/parser": "^7.21.8",
"@babel/plugin-syntax-jsx": "^7.21.4",
"@babel/plugin-syntax-typescript": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@babel/traverse": "^7.21.5",
"@babel/types": "^7.21.5",
"@npmcli/package-json": "^2.0.0",
"@remix-run/server-runtime": "1.19.2-pre.2",
"@vanilla-extract/integration": "^6.2.0",
"arg": "^5.0.1",
"cacache": "^15.0.5",
"chalk": "^4.1.2",
"chokidar": "^3.5.1",
"dotenv": "^16.0.0",
"esbuild": "0.17.6",
"esbuild-plugins-node-modules-polyfill": "^1.3.0",
"execa": "5.1.1",
"exit-hook": "2.2.1",
"express": "^4.17.1",
"fast-glob": "3.2.11",
"fs-extra": "^10.0.0",
"get-port": "^5.1.1",
"gunzip-maybe": "^1.4.2",
"inquirer": "^8.2.1",
"jsesc": "3.0.2",
"json5": "^2.2.2",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"minimatch": "^9.0.0",
"node-fetch": "^2.6.9",
"ora": "^5.4.1",
"picocolors": "^1.0.0",
"picomatch": "^2.3.1",
"pidtree": "^0.6.0",
"postcss": "^8.4.19",
"postcss-discard-duplicates": "^5.1.0",
"postcss-load-config": "^4.0.1",
"postcss-modules": "^6.0.0",
"prettier": "^2.7.1",
"pretty-ms": "^7.0.1",
"proxy-agent": "^6.3.0",
"react-refresh": "^0.14.0",
"recast": "^0.21.5",
"remark-frontmatter": "4.0.1",
"remark-mdx-frontmatter": "^1.0.1",
"semver": "^7.3.7",
"sort-package-json": "^1.55.0",
"tar-fs": "^2.1.1",
"tsconfig-paths": "^4.0.0",
"ws": "^7.4.5",
"xdm": "^2.0.0"
},
"devDependencies": {
"@remix-run/serve": "1.19.2-pre.2",
"@types/cacache": "^15.0.0",
"@types/gunzip-maybe": "^1.4.0",
"@types/inquirer": "^8.2.0",
"@types/jsesc": "^3.0.1",
"@types/lodash.debounce": "^4.0.6",
"@types/node-fetch": "^2.5.7",
"@types/npmcli__package-json": "^2.0.0",
"@types/picomatch": "^2.3.0",
"@types/shelljs": "^0.8.11",
"@types/tar-fs": "^2.0.1",
"@types/ws": "^7.4.1",
"esbuild-register": "^3.3.2",
"msw": "^0.39.2",
"shelljs": "^0.8.5",
"strip-ansi": "^6.0.1",
"tiny-invariant": "^1.2.0",
"type-fest": "^2.16.0"
},
"peerDependencies": {
"@remix-run/serve": "^1.19.2-pre.2"
},
"peerDependenciesMeta": {
"@remix-run/serve": {
"optional": true
}
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist/",
"compiler/shims/",
"server-build.js",
"server-build.d.ts",
"CHANGELOG.md",
"LICENSE.md",
"README.md"
]
}