-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 2.19 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
{
"name": "fingerprintjs-pro-angular-demo",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build fingerprintjs-pro-angular",
"watch": "ng build --watch --configuration development",
"watch:library": "ng build fingerprintjs-pro-angular --watch",
"generate:version": "node bin/generate-version.js",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore --max-warnings 0 .",
"test:dts": "tsc --noEmit --isolatedModules dist/fingerprintjs-pro-angular/fingerprintjs-fingerprintjs-pro-angular.d.ts",
"test": "jest",
"release:major": "cd projects/fingerprintjs-pro-angular && changelog -M --file ../../CHANGELOG.md && git add ../../CHANGELOG.md && yarn version --major --no-git-tag-version",
"release:minor": "cd projects/fingerprintjs-pro-angular && changelog -m --file ../../CHANGELOG.md && git add ../../CHANGELOG.md && yarn version --minor --no-git-tag-version",
"release:patch": "cd projects/fingerprintjs-pro-angular && changelog -p --file ../../CHANGELOG.md && git add ../../CHANGELOG.md && yarn version --patch --no-git-tag-version"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.3.0",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/forms": "~13.3.0",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.3.0",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.6",
"@angular-eslint/schematics": "^13.2.1",
"@angular/cli": "~13.3.6",
"@angular/compiler-cli": "~13.3.0",
"@types/jest": "^27.5.1",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"generate-changelog": "^1.8.0",
"jasmine-core": "~4.0.0",
"jest": "^28.1.0",
"jest-preset-angular": "^12.0.1",
"ng-packagr": "^13.0.0",
"prettier": "^2.6.2",
"typescript": "~4.6.2"
},
"workspaces": [
"projects/*"
]
}