-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
60 lines (60 loc) · 2.04 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
{
"name": "test-count-up",
"description": "This is just a test app - see projects/count-up/package.json",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build -c production",
"serve:prod": "ng serve -c production",
"build:countup": "ng-packagr -p projects/count-up/ng-package.json",
"pack:countup": "cd dist/count-up && npm pack && cd ../..",
"package:countup": "npm run build:countup && npm run pack:countup",
"install-tarball": "npm i ./dist/count-up/ngx-countup-13.2.0.tgz",
"all": "npm run package:countup && npm run install-tarball",
"reset:countup": "npm remove ngx-countUp",
"test": "ng test",
"lint": "ng lint",
"test:watch": "ng test --watch"
},
"private": true,
"dependencies": {
"@angular/common": "^13.2.7",
"@angular/compiler": "^13.2.7",
"@angular/core": "^13.2.7",
"@angular/forms": "^13.2.7",
"@angular/platform-browser": "^13.2.7",
"@angular/platform-browser-dynamic": "^13.2.7",
"@angular/router": "^13.2.7",
"countup.js": "^2.3.2",
"rxjs": "^6.6.7",
"zone.js": "^0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.5",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "^13.2.6",
"@angular/compiler-cli": "^13.2.7",
"@angular/language-service": "^13.2.7",
"@types/jasmine": "^3.10.6",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"eslint": "^8.28.0",
"jasmine-core": "^4.0.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^5.1.0",
"karma-spec-reporter": "0.0.34",
"ng-packagr": "^13.3.1",
"ts-node": "~10.5.0",
"typescript": "~4.5.5"
}
}