forked from prezly/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.82 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
{
"name": "prezly-slate",
"description": "Prezly software built upon Slate",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/prezly/slate.git"
},
"bugs": {
"url": "https://github.com/prezly/slate/issues"
},
"homepage": "https://github.com/prezly/slate#readme",
"type": "module",
"scripts": {
"bootstrap": "npm ci --legacy-peer-deps",
"build": "npm run build -w packages/slate-types -w packages/slate-commons -w packages/slate-hyperscript -w packages/slate-lists -w packages/slate-editor",
"check": "npm run prettier && npm run test",
"watch": "concurrently --kill-others --names 'types ,commons,hyper ,lists ,editor ' 'npm run watch -w packages/slate-types' 'npm run watch -w packages/slate-commons' 'npm run watch -w packages/slate-hyperscript' 'npm run watch -w packages/slate-lists' 'npm run watch -w packages/slate-editor'",
"lint": "npm run lint --workspaces",
"lint:fix": "npm run lint --workspaces -- --fix",
"test": "npm run test --workspaces",
"clean": "npm run clean:build && npm run clean:node_modules",
"clean:build": "npm run clean:build --workspaces && rimraf *.tsbuildinfo",
"clean:node_modules": "npm run clean:node_modules --workspaces && rimraf node_modules/",
"prettier": "prettier --check './**/*.(js|ts|tsx|scss)'",
"prettier:fix": "npm run prettier -- --write --no-list-different",
"release": "npm run release:prepare && npm run release:publish",
"release:build": "npm run clean && npm run bootstrap && npm run build",
"release:prepare": "npm run release:build && npm run check",
"release:publish": "lerna publish --force-publish"
},
"devEngines": {
"node": ">= 16.13.0",
"npm": ">= 7.7.0"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"react": "^16.9.0",
"react-bootstrap": "=0.32.4",
"react-dom": "^16.9.0",
"slate": "^0.71.0",
"slate-history": "^0.66.0",
"slate-react": "^0.71.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@dr.pogodin/babel-preset-svgr": "^1.3.1",
"@types/gulp-babel": "^6.1.30",
"@types/jest": "^27.0.3",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.0",
"@types/through2": "^2.0.36",
"@types/vinyl": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"autoprefixer": "^10.4.0",
"babel-plugin-add-import-extension": "^1.6.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-remove-imports": "^1.7.0",
"branch-pipe": "^1.0.1",
"concurrently": "^6.4.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-filter": "^7.0.0",
"gulp-map": "^0.0.2",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.0.0",
"gulp-tap": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^27.3.1",
"jest-canvas-mock": "^2.3.1",
"lerna": "^3.22.1",
"postcss": "^8.4.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sass": "^1.32.8",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tsc-fancy": "^1.1.2",
"typescript": "~4.4.0"
}
}