-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.02 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.02 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
{
"name": "the-editor",
"version": "0.1.0",
"description": "a markdown editor",
"main": "dist/the-editor.js",
"browser": "dist/the-editor.esm.js",
"umd": "dist/the-editor.min.js",
"types": "dist/types",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "del dist/* && rollup -c rollup.config.js",
"dev": "rollup -c rollup.config.dev.js -w",
"commit": "git-cz",
"prettier": "prettier --write src/."
},
"keywords": [
"markdown",
"editor"
],
"author": {
"name": "Johnson",
"email": "johnsonlee1126@163.com",
"url": "https://johnsonlee.site"
},
"license": "MIT",
"repository": {
"url": "https://github.com/YES-Lee/the-editor",
"type": "github"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
"codemirror": "^5.59.1",
"github-markdown-css": "^4.0.0",
"highlight.js": "^10.5.0",
"marked": "^1.2.7",
"resize-observer-polyfill": "^1.5.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/codemirror": "0.0.104",
"@types/marked": "^1.2.1",
"@types/node": "^14.14.9",
"@types/webpack": "^4.41.25",
"@types/webpack-dev-server": "^3.11.1",
"commitizen": "^4.2.3",
"commitlint": "^11.0.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^3.0.1",
"husky": "^4.3.8",
"postcss": "^8.2.3",
"prettier": "^2.2.1",
"rollup": "^2.33.3",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"sass": "^1.32.2",
"tslib": "^2.1.0",
"typescript": "^4.1.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "prettier --write --ignore-unknown src/."
}
}
}