-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
41 lines (41 loc) · 1.72 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
{
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/TeemuKoivisto/prosemirror-react-typescript-example.git"
},
"bugs": {
"url": "https://github.com/TeemuKoivisto/prosemirror-react-typescript-example/issues"
},
"homepage": "https://github.com/TeemuKoivisto/prosemirror-react-typescript-example#readme",
"scripts": {
"format": "prettier --write \"*.+(js|json|yml|yaml|ts|md|graphql|mdx)\" .",
"lint:fix": "eslint --ignore-path .gitignore --fix --ext .js,.cjs,.ts,.tsx .",
"build": "pnpm -r build",
"dev:editors": "concurrently 'pnpm --filter atlassian watch' 'pnpm --filter full watch' 'pnpm --filter full-v2 watch' 'pnpm --filter minimal watch'",
"dev:client": "pnpm --filter client-cra start",
"dev:collab": "concurrently 'pnpm --filter api-collab watch' 'pnpm --filter api-collab dev'",
"dev:ssr": "pnpm --filter client-ssr build && pnpm --filter client-ssr start",
"dev:nextjs": "concurrently 'pnpm --filter client-nextjs dev'",
"dev:utils": "concurrently 'pnpm --filter @example/prosemirror-utils watch' 'pnpm --filter @example/types watch'",
"start": "concurrently 'dev:utils' 'pnpm dev:editors' 'pnpm dev:collab' 'pnpm --filter client-cra start'"
},
"engines": {
"node": ">=16",
"pnpm": "^7.0.0"
},
"devDependencies": {
"concurrently": "^7.3.0",
"eslint": "8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1"
}
}