-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.07 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.07 KB
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
{
"private": true,
"name": "@mindfiredigital/documenteditor",
"description": "documenteditor",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc && node script/fix-imports.js && npm run copy-assets",
"start": "lite-server",
"watch": "turbo run build --filter=. --watch",
"test": "turbo run test",
"lint": "turbo run lint",
"prepare": "npx husky install",
"release": "turbo run build && pnpm publish --access public",
"changeset:autogenerate": "node .github/changeset-autogenerate.mjs"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"documenteditor",
"rich-page-builder",
"html-editor",
"typescript",
"npm-package"
],
"author": "mindfiredigitalllp",
"license": "UNLICENSED",
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.12",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"babel": "^6.23.0",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"ncp": "^2.0.0",
"prettier": "^3.3.3",
"rollup": "^4.30.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"tsc-alias": "^1.8.10",
"tslib": "^2.8.1",
"turbo": "^1.10.0",
"typescript": "^5.7.3"
},
"pnpm": {
"overrides": {
"react": "18.3.1",
"react-dom": "18.3.1"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"prettier --write"
],
"**/*.json": [
"prettier --write"
],
"**/*.md": [
"prettier --write"
]
},
"engines": {
"node": ">=12.0.0"
},
"packageManager": "pnpm@8.6.0"
}