This repository was archived by the owner on Jul 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 KB
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
{
"name": "remix-crash",
"version": "0.1.3",
"license": "MIT",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/client/remix-crash.es.js",
"require": "./dist/client/remix-crash.umd.js",
"types": "./dist/client/remix-crash.d.ts"
},
"./server": {
"import": "./dist/server/remix-crash.es.js",
"require": "./dist/server/remix-crash.umd.js",
"types": "./dist/server/remix-crash.d.ts"
}
},
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build && rollup -c"
},
"devDependencies": {
"@remix-run/dev": "^1.0.5",
"@remix-run/node": "^1.1.3",
"@remix-run/react": "^1.0.5",
"@rollup/plugin-typescript": "^8.3.0",
"@types/babel__core": "^7.1.18",
"@types/node": "^17.0.14",
"@types/node-fetch": "^2.6.1",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@vitejs/plugin-react": "^1.0.7",
"autoprefixer": "^10.4.2",
"concurrently": "^7.0.0",
"postcss": "^8.4.6",
"react": ">=16.8",
"react-dom": ">=16.8",
"remix": ">=1.0.5",
"rollup": "^2.67.2",
"tailwindcss": "^3.0.18",
"typescript": "^4.4.4",
"vite": "^2.7.2"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8",
"remix": ">=1.0.5"
},
"dependencies": {
"axios": "^0.26.0",
"highlight.js": "^11.4.0",
"node-fetch": "^3.2.0",
"source-map": "^0.7.3"
}
}