-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
103 lines (103 loc) · 3.95 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
101
102
103
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"initialize": "rm -rf node_modules && lerna clean --yes && lerna bootstrap && lerna link",
"create:package": "node ./scripts/create-package.js",
"build": "lerna exec --no-private --stream -- yarn build",
"build:adapter": "lerna exec --scope @syllepsis/adapter yarn build",
"build:editor": "lerna exec --scope @syllepsis/editor yarn build",
"build:plugin": "lerna exec --scope @syllepsis/plugin-* yarn build",
"build:react": "lerna exec --scope @syllepsis/access-react yarn build",
"watch:adapter": "lerna exec --scope @syllepsis/adapter yarn watch & sleep 2",
"watch:editor": "lerna exec --scope @syllepsis/editor yarn watch & sleep 1",
"watch:plugin": "lerna exec --parallel --scope @syllepsis/plugin-* yarn watch & sleep 3",
"watch:react": "lerna exec --scope @syllepsis/access-react yarn watch & sleep 5",
"watch:code": "yarn watch:adapter && yarn watch:editor && yarn watch:plugin && yarn watch:react",
"watch:doc": "docsify serve docs",
"start:adapter": "yarn watch:adapter & lerna exec --scope example-adapter yarn start",
"start:react": "yarn watch:code && lerna exec --scope example-react yarn start",
"start:placeholder": "yarn watch:code && lerna exec --scope example-placeholder yarn start",
"start:doc": "anywhere -d docs",
"test": "jest --config jest.config.js ./test/index.test.ts",
"test:doc": "node ./docs/index.js",
"lint": "eslint --fix 'packages/**/src/**/*.{ts,tsx}'",
"postversion": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 -n ./changelog/config.js && node ./scripts/commit-change.js && node ./scripts/releaser.js"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.23",
"@types/node": "^10.11.0",
"@types/orderedmap": "^1.0.0",
"@types/prosemirror-schema-basic": "^1.0.1",
"@types/prosemirror-test-builder": "^1.0.1",
"@types/puppeteer": "^5.4.3",
"@types/react": "^16.7.13",
"@types/react-dom": "^16.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/eslint-plugin-tslint": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"anywhere": "^1.5.0",
"commitizen": "^3.0.7",
"conventional-changelog": "^3.1.12",
"conventional-changelog-cli": "^2.0.25",
"conventional-github-releaser": "^3.1.5",
"copyfiles": "^2.2.0",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^7.29.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^1.0.1",
"inquirer": "^8.1.1",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"jest-environment-puppeteer": "^5.0.4",
"jest-puppeteer": "^6.0.2",
"lerna": "^4.0.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"prosemirror-test-builder": "^1.0.1",
"puppeteer": "^10.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.2",
"ts-jest": "26.5.5",
"tslint": "^6.1.3",
"typescript": "^4.4.2",
"vite": "^2.3.7"
},
"dependencies": {
"@syllepsis/access-react": "file:packages/access-react",
"@syllepsis/adapter": "file:packages/adapter",
"@syllepsis/editor": "file:packages/editor",
"@syllepsis/plugin-basic": "file:packages/plugin-basic",
"@syllepsis/plugin-code-block": "file:packages/plugin-code-block",
"@syllepsis/plugin-table": "file:packages/plugin-table",
"@syllepsis/plugin-placeholder": "file:packages/plugin-placeholder"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts, tsx}": [
"eslint --fix",
"git add"
]
},
"version": "0.0.0"
}