-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
77 lines (77 loc) · 1.95 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
{
"name": "npm-unpkg",
"version": "2.1.0",
"description": "A web application to view npm package files, Based on unpkg.",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"private": true,
"scripts": {
"prepare": "husky install",
"start": "kkt start",
"build": "kkt build",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\""
},
"repository": {
"type": "git",
"url": "https://github.com/uiwjs/npm-unpkg.git"
},
"author": "",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.18.9",
"@codemirror/lang-css": "^6.0.0",
"@codemirror/lang-html": "^6.1.0",
"@codemirror/lang-javascript": "^6.0.2",
"@codemirror/lang-json": "^6.0.0",
"@codemirror/lang-xml": "^6.0.0",
"@codemirror/legacy-modes": "^6.1.0",
"@rematch/core": "~2.2.0",
"@rematch/loading": "~2.1.2",
"@uiw/react-codemirror": "^4.11.4",
"@uiw/react-github-corners": "^1.5.14",
"@uiw/react-markdown-preview": "^5.0.0",
"@uiw/reset.css": "^1.0.6",
"@wcj/dark-mode": "^1.0.15",
"axios": "^0.27.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "~8.1.0",
"react-router-dom": "^6.14.0",
"rehype-rewrite": "^4.0.0",
"rehype-video": "^2.0.0",
"uiw": "~4.21.19"
},
"engines": {
"node": "^16.0.0"
},
"lint-staged": {
"*.{js,jsx,tsx,ts,less,md,json}": "prettier --write"
},
"devDependencies": {
"@kkt/less-modules": "^7.2.0",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-redux": "^7.1.24",
"husky": "^8.0.1",
"kkt": "^7.2.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}