-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 2.12 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
{
"name": "pioneer-charts",
"version": "0.0.0",
"type": "module",
"scripts": {
"ng": "ng",
"start": "ng serve pioneer-charts-dev",
"start-docs": "ng serve pioneer-charts-web",
"start-components": "ng build @pioneer-code/pioneer-charts --watch",
"build:docs": "ng build pioneer-charts-web --prod",
"build:docs:404": "node ./build/404.js",
"build:docs:prod": "npm run build:lib && npm run build:docs && npm run build:docs:404",
"build:lib": "npm run build:lib:package && npm run build:lib:sass && npm run build:lib:theme && npm run build:lib:readme",
"build:lib:publish": "npm run build:lib && npm publish ./dist/pioneer-charts --access public",
"build:lib:publish:tag": "npm run build:lib && npm publish ./dist/pioneer-charts --access public --tag rc",
"build:lib:readme": "node ./build/readme.js",
"build:lib:package": "ng build @pioneer-code/pioneer-charts",
"build:lib:theme": "node ./build/theme.js",
"build:lib:sass": "node ./build/sass.js",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.4",
"@angular/cdk": "^19.1.2",
"@angular/common": "^19.1.4",
"@angular/compiler": "^19.1.4",
"@angular/core": "^19.1.4",
"@angular/forms": "^19.1.4",
"@angular/material": "^19.1.2",
"@angular/platform-browser": "^19.1.4",
"@angular/platform-browser-dynamic": "^19.1.4",
"@angular/router": "^19.1.4",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.5",
"@angular/cli": "~19.1.5",
"@angular/compiler-cli": "^19.1.4",
"@types/d3": "^7.4.3",
"@types/jasmine": "~4.0.0",
"@types/node": "^20.2.5",
"bootstrap": "^5.3.3",
"cpy": "^11.1.0",
"d3": "^7.9.0",
"jasmine-core": "~4.1.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^19.0.0",
"sass": "^1.78.0",
"typescript": "~5.6.3"
}
}