forked from ng-dnd/ng-dnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.6 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
72
73
74
{
"name": "@ng-dnd/monorepo",
"private": true,
"version": "0.0.0",
"scripts": {
"lerna": "lerna",
"build": "lerna exec node ../../tools/tasks/build && lerna exec cp ../../README.md dist/README.md",
"watch": "cross-env WATCH_MODE=true lerna exec --parallel node ../../tools/tasks/build",
"build-tools": "tsc -p ./tools/tsconfig.json",
"clean-all": "lerna clean && rimraf packages/*/dist",
"clean": "rimraf packages/*/dist",
"test": "jest",
"test-tdd": "jest --watchAll --no-cache",
"test-debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --no-cache --runInBand",
"release": "yarn lerna version && yarn build && yarn lerna publish from-git",
"deploy": "gh-pages -d out-docs",
"postinstall": "yarn build-tools",
"lint": "npm run lint:ts && npm run lint:scss",
"lint:ts": "eslint \"packages/**/*.ts\" --fix",
"lint:scss": "stylelint \"packages/**/*.scss\" --fix",
"aio": "compodoc -p ./tsconfig.json --output ./aio --hideGenerator --silent"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@angular/animations": "^17.3.1",
"@angular/common": "^17.3.1",
"@angular/compiler": "^17.3.1",
"@angular/core": "^17.3.1",
"@angular/forms": "^17.3.1",
"@angular/platform-browser": "^17.3.1",
"@angular/platform-browser-dynamic": "^17.3.1",
"@angular/router": "^17.3.1",
"rxjs": "~7.8.0",
"tslib": "^2.4.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.2",
"@angular-eslint/builder": "^17.3.0",
"@angular-eslint/eslint-plugin": "^17.3.0",
"@angular-eslint/eslint-plugin-template": "^17.3.0",
"@angular-eslint/schematics": "^17.3.0",
"@angular-eslint/template-parser": "^17.3.0",
"@angular/cli": "^17.3.2",
"@angular/compiler-cli": "^17.3.1",
"@angular/language-service": "^17.3.1",
"@compodoc/compodoc": "^1.1.24",
"@types/fs-extra": "^11.0.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"chokidar-cli": "^3.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"fs-extra": "^11.0.0",
"gh-pages": "^4.0.0",
"jest": "^29.7.0",
"jest-localstorage-mock": "^2.4.19",
"jest-preset-angular": "^13.1.0",
"lerna": "^4.0.0",
"mermaid.cli": "^0.5.1",
"ng-packagr": "^17.3.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"stylelint": "^16.3.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"ts-node": "~10.9.0",
"typescript": "~5.3.3"
}
}