forked from L2ncE/juejin-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.18 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
{
"name": "juejin-helper-monorepo",
"version": "1.7.3",
"private": true,
"author": "Derek Li",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "cross-env NODE_ENV=development rollup -cw",
"build": "cross-env NODE_ENV=production rollup -c",
"clean": "rimraf \"packages/*/{build,types}\"",
"release:version": "lerna version --exact --force-publish",
"release:build": "npm run clean && npm run build",
"release:publish": "lerna publish from-package --no-private"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-sucrase": "^4.0.4",
"@typescript-eslint/parser": "^5.32.0",
"cross-env": "^7.0.3",
"eslint": "^8.14.0",
"eslint-config-next": "^12.1.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"lerna": "^5.4.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.77.2",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"workspaces-run": "^1.0.1"
},
"engines": {
"node": ">=14.17.0",
"npm": ">=6.14.13"
}
}