forked from unpkg/unpkg
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.71 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.71 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
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
{
"name": "unpkg",
"version": "1.0.0",
"private": true,
"description": "The CDN for everything on npm",
"scripts": {
"build": "rollup -c",
"clean": "git clean -e '!/.env' -fdX .",
"lint": "eslint .",
"serve": "nodemon -w server.js start.js",
"pm2": "pm2 start -n unpkg start.js",
"test": "jest",
"watch": "rollup -c -w"
},
"resolutions": {
"pretty-bytes": "5.6.0"
},
"dependencies": {
"@emotion/react": "~11.14.0",
"@reach/visually-hidden": "~0.18.0",
"cheerio": "~1.1.2",
"cors": "~2.8.5",
"date-fns": "~2.29.3",
"etag": "~1.8.1",
"express": "~4.18.2",
"gunzip-maybe": "~1.4.2",
"highlight.js": "~11.11.1",
"isomorphic-fetch": "~3.0.0",
"jsesc": "~3.0.2",
"lru-cache": "~10.2.0",
"mime": "~4.0.1",
"morgan": "~1.10.0",
"ndjson": "~2.0.0",
"pretty-bytes": "5.6.0",
"prop-types": "~15.8.1",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-icons": "~5.0.1",
"semver": "~7.7.3",
"sort-by": "~1.2.0",
"sri-toolbox": "~0.2.0",
"tar-stream": "~3.1.7",
"tempy": "~3.1.0",
"validate-npm-package-name": "~5.0.0",
"warning": "~4.0.3",
"whatwg-url": "~14.0.0"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "~0.27.0",
"@babel/core": "~7.20.12",
"@babel/plugin-proposal-class-properties": "~7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "~7.18.6",
"@babel/plugin-proposal-optional-chaining": "~7.20.7",
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
"@babel/plugin-syntax-export-default-from": "~7.18.6",
"@babel/plugin-syntax-export-namespace-from": "~7.8.3",
"@babel/plugin-syntax-import-meta": "~7.10.4",
"@babel/preset-env": "~7.20.2",
"@babel/preset-react": "~7.18.6",
"@typescript-eslint/eslint-plugin": "7.0.2",
"@typescript-eslint/parser": "7.0.2",
"babel-core": "~7.0.0-bridge.0",
"babel-jest": "~29.7.0",
"chalk": "~5.6.2",
"dotenv": "~16.4.5",
"eslint": "8.56.0",
"eslint-config-react-app": "~7.0.1",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "~29.7.0",
"nodemon": "~3.0.3",
"rollup": "~4.52.4",
"@rollup/plugin-babel": "~6.0.4",
"@rollup/plugin-commonjs": "~28.0.6",
"@rollup/plugin-json": "~6.1.0",
"@rollup/plugin-node-resolve": "~16.0.2",
"@rollup/plugin-replace": "~6.0.2",
"@rollup/plugin-url": "~8.0.2",
"supertest": "~6.3.4"
},
"engines": {
"node": ">=12"
},
"files": [
".npmrc",
"server.js",
"start.js",
"public",
".env.prod",
"scripts"
]
}