forked from ts-stack/markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.44 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
{
"private": true,
"name": "monorepo",
"workspaces": [
"projects/*"
],
"devDependencies": {
"@angular/compiler": "^11.2.7",
"@angular/compiler-cli": "^11.2.7",
"@angular/core": "^11.2.7",
"@types/jest": "^26.0.22",
"@types/katex": "^0.11.0",
"@types/markdown-it": "^12.0.1",
"@types/node": "^14.14.37",
"commonmark": "^0.29.1",
"concurrently": "^6.0.0",
"highlight.js": "^10.4.1",
"jest": "^26.6.3",
"katex": "^0.13.0",
"lerna": "^4.0.0",
"markdown": "^0.5.0",
"markdown-it": "^12.0.4",
"marked": "^2.0.1",
"ng-packagr": "^11.2.4",
"prettier": "^2.0.5",
"remarkable": "^2.0.0",
"rimraf": "^3.0.0",
"showdown": "^1.8.6",
"ts-jest": "^26.5.4",
"tsconfig-paths": "^3.9.0",
"tslib": "^2.0.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": ">=4.0 <4.2"
},
"scripts": {
"test": "ts-node -r tsconfig-paths/register projects/markdown-tests/src/index.ts && jest projects/markdown-tests",
"build": "ng-packagr -p projects/markdown/ng-package.json",
"clean": "rimraf projects/**/dist* projects/**/out-tsc* projects/**/*.tsbuildinfo",
"pub": "yarn build && cd dist && npm publish",
"build:bench": "rimraf projects/markdown-tests/dist/* && tsc -b -f projects/markdown-tests",
"bench": "node -r tsconfig-paths/register projects/markdown-tests/dist/benchmarks.js"
}
}