-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.79 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
{
"name": "nx-theme-tiny",
"version": "0.2.1",
"private": true,
"description": "A simple, clean, and minimalistic theme for NEXT.",
"author": "Wibus <https://iucky.cn>",
"license": "AGPLv3",
"repository": {
"directory": "nx-space/nx-theme-tiny",
"url": "https://github.com/nx-space/nx-theme-tiny"
},
"homepage": "https://github.com/nx-space/nx-theme-tiny#readme",
"issues": "https://github.com/nx-space/nx-theme-tiny/issues",
"engines": {
"node": ">=16"
},
"scripts": {
"prebuild": "rimraf .next",
"predev": "rimraf .next",
"dev": "cross-env NODE_ENV=development next dev",
"build": "cross-env NODE_ENV=production next build",
"build:pwa": "sh scripts/build.sh",
"start": "cross-env NODE_ENV=production next start",
"lint": "next lint",
"lint:eslint": "eslint --ext .ts,.tsx --ignore-path .gitignore . --fix",
"stylelint": "stylelint 'src/**/*.{css,scss}' --fix",
"prod:pm2": "cross-env NODE_ENV=production pm2 restart ecosystem.config.js",
"prod:stop": "pm2 stop ecosystem.config.js",
"prod:reload": "pm2 reload ecosystem.config.js"
},
"browserslist": [
"chrome >=94",
"safari >=14",
"last 2 Firefox versions"
],
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"next-pwa",
"next"
]
}
},
"dependencies": {
"@icon-park/react": "1.4.2",
"clsx": "1.2.1",
"cross-env": "7.0.3",
"framer-motion": "7.2.0",
"lodash": "4.17.21",
"lodash-es": "4.17.21",
"medium-zoom": "1.0.6",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"next": "12.2.5",
"next-seo": "5.5.0",
"ohmyfetch": "0.4.18",
"qier-progress": "1.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intersection-observer": "9.4.0",
"react-lazyload": "3.2.0",
"react-markdown": "8.0.3",
"react-message-popup": "1.0.0-alpha.2",
"react-syntax-highlighter": "15.5.0",
"react-use": "17.4.0",
"rehype-katex": "6.0.2",
"rehype-raw": "6.1.1",
"remark-gfm": "3.0.1",
"valtio": "1.7.1"
},
"devDependencies": {
"@innei-util/eslint-config-react-ts": "0.8.2",
"@innei/prettier": "0.9.4",
"@tailwindcss/typography": "0.5.7",
"@types/lodash": "4.14.183",
"@types/node": "18.6.4",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/react-lazyload": "3.2.0",
"@types/react-syntax-highlighter": "15.5.4",
"autoprefixer": "10.4.8",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"husky": "8.0.1",
"less": "4.1.3",
"lint-staged": "13.0.3",
"next-compose-plugins": "2.2.1",
"next-pwa": "5.5.5",
"postcss": "8.4.16",
"postcss-nesting": "10.1.10",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"tailwindcss": "3.1.8",
"typescript": "4.7.4"
}
}