-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.14 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
{
"name": "markdown-editor",
"description": "An advanced markdown editor used in the Teamwork product suite.",
"private": true,
"devDependencies": {
"@babel/preset-env": "^7.4.5",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@types/debug": "^4.1.4",
"@types/jest": "^24.0.12",
"babel-loader": "^8.0.6",
"codemirror": "^5.48.0",
"core-js": "^3.1.3",
"css-loader": "^2.1.1",
"debug": "^4.1.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.1.0",
"jest": "^24.7.1",
"jest-extended": "^0.11.1",
"lerna": "^3.13.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0",
"regenerator-runtime": "^0.13.2",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.1",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.3.1"
},
"author": "Greg Kubisa <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Teamwork/markdown-editor.git"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"clean": "rimraf packages/*/lib **/*.tsbuildinfo",
"prettier": "prettier --list-different 'packages/*/src/**/*' 'packages/*/*.json' '*.json' '*.MD' '.prettierrc'",
"tslint": "tslint --project .",
"tsc": "tsc -b packages/*",
"test": "jest",
"build": "run-s clean prettier tslint tsc test",
"demo": "webpack",
"start": "run-p start:*",
"start:demo": "webpack-dev-server -d",
"start:tsc": "tsc -b -w packages/*"
},
"husky": {
"hooks": {
"commit-msg": "[ $(git rev-parse --abbrev-ref HEAD) != 'master' ] || commitlint --edit $HUSKY_GIT_PARAMS",
"pre-commit": "npm run build",
"pre-push": "[ $(git rev-parse --abbrev-ref HEAD) != 'master' ] || run-s build demo && [ -z \"$(git status --porcelain)\" ]"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@teamwork/markdown-editor": "file:packages/markdown-editor",
"@types/codemirror": "0.0.76"
}
}