-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "editorjs-plugins",
"version": "0.0.0",
"repository": "git@github.com:ycu-engine/editorjs-plugins.git",
"author": "YutaUra <yuuta3594@outlook.jp>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"type-check": "lerna run type-check",
"lint": "lerna run lint",
"pre-commit": "lint-staged && run-p lint type-check",
"postinstall": "lerna run typesync",
"prepare": "husky install",
"release": "yarn build && lerna publish"
},
"devDependencies": {
"@editorjs/editorjs": "^2.20.2",
"@types/node": "^14.14.41",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"css-loader": "^5.2.4",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"file-loader": "^6.2.0",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"svg-inline-loader": "^0.8.2",
"ts-loader": "^9.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"typesync": "^0.8.0",
"url-loader": "^4.1.1",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0"
},
"lint-staged": {
"**/*.{ts,css}": [
"prettier -w"
]
}
}