-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
47 lines (47 loc) · 1.51 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
{
"private": true,
"name": "monorepo",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@angular/compiler": "^16.1.8",
"@angular/compiler-cli": "^16.2.2",
"@angular/core": "^16.1.8",
"@types/eslint": "^8.44.2",
"@types/jest": "^29.5.4",
"@types/katex": "^0.16.2",
"@types/markdown-it": "^12.2.3",
"@types/node": "^20.5.6",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"commonmark": "^0.30.0",
"eslint": "^8.47.0",
"highlight.js": "^11.8.0",
"jest": "^29.6.4",
"katex": "^0.16.8",
"lerna": "^7.1.5",
"markdown": "^0.5.0",
"markdown-it": "^13.0.1",
"marked": "^7.0.4",
"ng-packagr": "^16.2.1",
"prettier": "^3.0.2",
"remarkable": "^2.0.1",
"rimraf": "^5.0.1",
"showdown": "^2.1.0",
"ts-jest": "^29.1.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"scripts": {
"build": "tsc -b packages",
"test": "npm run build && node -r tsconfig-paths/register packages/markdown/dist-test/index.js && jest",
"test1": "jest -c jest.config1.ts",
"ng-build": "npm run clean && npm run build && ng-packagr -p packages/markdown/ng-package.json && npm run copy-readme",
"copy-readme": "cp README.md dist",
"clean": "rimraf dist packages/**/dist*",
"pub": "npm run ng-build && cd dist && npm publish",
"bench": "npm run build && node -r tsconfig-paths/register --expose-gc packages/markdown/dist-test/benchmarks.js",
"lint": "eslint . --ext .ts"
}
}