-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.24 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
{
"name": "docs.plus",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"browserslist": [
"defaults",
"not IE 11"
],
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.22.19"
},
"scripts": {
"build": "lerna run build",
"release": "lerna version --no-push --no-git-tag-version",
"update:packages": "ncu -u",
"dev": "npx lerna run dev --scope=@docs.plus/demo",
"server": "npx lerna run server --scope=@docs.plus/demo",
"start": "concurrently \"npx @hocuspocus/cli --sqlite\" \"yarn dev\"",
"lint": "eslint --cache --quiet --no-error-on-unmatched-pattern ./",
"lint:fix": "eslint --fix --cache --quiet --no-error-on-unmatched-pattern ./"
},
"devDependencies": {
"@atomico/rollup-plugin-sizes": "^1.1.4",
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-syntax-typescript": "^7.23.3",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"babel-loader": "^9.1.3",
"babel-plugin-module-resolver": "^5.0.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.20.1",
"husky": "^8.0.3",
"lerna": "^8.0.2",
"lint-staged": "^15.2.0",
"minimist": "^1.2.8",
"next-transpile-modules": "^10.0.1",
"npm-check-updates": "^16.14.12",
"rollup": "^4.9.5",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.69.7",
"ts-loader": "9.5.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0"
}
}