-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
95 lines (95 loc) · 2.63 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
{
"name": "v2ex-mini",
"version": "1.0.0",
"private": true,
"description": "unofficial mini app for v2ex.com",
"templateInfo": {
"name": "default",
"typescript": true,
"css": "Sass",
"framework": "React"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"build": "taro build --type weapp",
"dev": "npm run build -- --watch",
"lint": "npx eslint --fix",
"lint:style": "npx stylelint \"**/*.scss\" --fix",
"format": "npx prettier --write src"
},
"browserslist": [
"last 3 versions",
"Android >= 4.1",
"ios >= 8"
],
"author": "konka",
"repository": {
"type": "git",
"url": "https://github.com/TheKonka/v2ex-mini.git"
},
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.25.6",
"@tarojs/components": "3.6.27",
"@tarojs/plugin-framework-react": "3.6.27",
"@tarojs/plugin-platform-weapp": "3.6.27",
"@tarojs/react": "3.6.27",
"@tarojs/runtime": "3.6.27",
"@tarojs/shared": "3.6.27",
"@tarojs/taro": "3.6.27",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"lucide-static": "^0.436.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"use-debounce": "^9.0.4"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.10.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@tarojs/cli": "3.6.27",
"@tarojs/webpack5-runner": "3.6.27",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/webpack-env": "^1.18.5",
"babel-preset-taro": "3.6.27",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "5.1.0-beta-26f2496093-20240514",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss-preset-env": "^9.6.0",
"prettier": "^3.3.3",
"react-refresh": "^0.11.0",
"stylelint": "^16.9.0",
"stylelint-config-standard-scss": "^13.1.0",
"taro-plugin-remove": "^0.0.2",
"typescript": "^5.6.2",
"typescript-eslint": "8.2.0",
"webpack": "^5.94.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --cache --fix"
],
"*.scss": "stylelint --fix"
},
"engines": {
"node": ">=18"
},
"pnpm": {
"overrides": {
"mdast-util-gfm-autolink-literal": "2.0.0"
}
},
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}