-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.85 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
98
99
100
{
"name": "juejin",
"version": "1.0.0",
"license": "MIT",
"private": "false",
"bugs": {
"url": "https://github.com/Bocchi-Developers/juejin/issues"
},
"homepage": "https://github.com/Bocchi-Developers/juejin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Bocchi-Developers/juejin.git"
},
"engines": {
"node": ">=14"
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts}": [
"npm run lint",
"prettier --ignore-path ./.gitignore --write "
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git",
"useEmoji": true
}
},
"bump": {
"leading": [
"pnpm build"
],
"publish": false,
"tag": true,
"commit_message": "chore(release): bump @Bocchi-Developers/juejin to v${NEW_VERSION}"
},
"scripts": {
"prepare": "husky install",
"dev": "cross-env NODE_ENV=development next dev -p 7496",
"build": "cross-env NODE_ENV=production next build",
"analyze": "cross-env NODE_ENV=production ANALYZE=true BUNDLE_ANALYZE=browser next build",
"start": "next start -p 7497",
"lint": "eslint --ext .ts,.tsx --ignore-path .gitignore . --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",
"release": "vv",
"test": "vitest",
"test:watch": "vitest watch",
"test:updateSnap": "vitest -u"
},
"dependencies": {
"@arco-design/web-react": "^2.44.0",
"@next/font": "13.1.6",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"axios": "^1.2.5",
"clsx": "^1.2.1",
"css-spring": "^4.1.0",
"dayjs": "^1.11.7",
"js-cookie": "^3.0.1",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"lodash-es": "^4.17.21",
"markdown-to-jsx": "npm:@innei/[email protected]",
"mobx": "^6.7.0",
"mobx-react-lite": "^3.4.0",
"next": "13.1.2",
"next-seo": "^5.15.0",
"next-suspense": "^0.1.3",
"next-with-less": "^2.0.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-infinite-scroller": "^1.2.6",
"react-intersection-observer": "^9.4.1",
"react-message-popup": "1.0.0",
"typescript": "4.9.5",
"unified": "^10.1.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@innei/bump-version": "^1.5.6",
"@next/bundle-analyzer": "^13.1.2",
"@suemor/eslint-config-react-ts": "^1.1.0",
"@suemor/prettier": "^1.1.0",
"@testing-library/react": "^14.0.0",
"@types/node": "18.14.6",
"@vitejs/plugin-react": "^3.1.0",
"commitlint": "^17.4.2",
"cross-env": "^7.0.3",
"cz-git": "^1.4.1",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.0",
"next-compose-plugins": "^2.2.1",
"vite": "^4.1.3",
"vitest": "^0.29.0"
}
}