-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathpackage.json
79 lines (79 loc) · 2.66 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
75
76
77
78
79
{
"name": "ngx-drag-scroll-demo",
"version": "0.0.0",
"scripts": {
"postinstall": "husky install",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"package": "ng build ngx-drag-scroll --configuration production && node copy-artifacts.js",
"artifacts": "node copy-artifacts.js",
"test": "ng test --watch=false",
"lint": "npx eslint 'src/**/*.{js,jsx,ts,tsx,html}' --quiet --fix",
"format": "npx prettier 'src/**/*.{js,jsx,ts,tsx,html}' --write",
"changelog": "test \"`git rev-parse --abbrev-ref HEAD`\" = \"master\" && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"clean": "npm run rimraf -- node_modules",
"rimraf": "rimraf"
},
"author": "Fan Jin",
"license": "MIT",
"private": true,
"dependencies": {
"@angular/animations": "18.0.4",
"@angular/cdk": "18.0.4",
"@angular/common": "18.0.4",
"@angular/compiler": "18.0.4",
"@angular/core": "18.0.4",
"@angular/forms": "18.0.4",
"@angular/material": "18.0.4",
"@angular/platform-browser": "18.0.4",
"@angular/platform-browser-dynamic": "18.0.4",
"@angular/router": "18.0.4",
"core-js": "~3.34.0",
"hammerjs": "^2.0.8",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.0.5",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "18.0.5",
"@angular/compiler-cli": "18.0.4",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/hammerjs": "^2.0.45",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "2.0.13",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jasmine-core": "~5.1.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"lint-staged": "^15.2.0",
"ng-packagr": "^18.0.0",
"prettier": "^3.1.1",
"ts-node": "~10.9.2",
"typescript": "^5.4.0"
},
"optionalDependencies": {
"@nx/nx-darwin-arm64": "19.3.2",
"@nx/nx-darwin-x64": "19.3.2",
"@nx/nx-linux-x64-gnu": "19.3.2",
"@nx/nx-win32-x64-msvc": "19.3.2"
}
}