-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 2.5 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
{
"name": "nb-common-demo",
"version": "18.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"start:lib": "ng build --watch nb-common",
"build:lib": "npm run lint:lib && ng build nb-common && npm run copy:readmeCn && npm run copy:changelog && npm run copy:license",
"build:analyze": "npm run build -- --source-map && npm run view:analyze",
"view:analyze": "node_modules/.bin/source-map-explorer dist/nb-common-demo/*",
"test:lib": "ng test nb-common",
"deploy": "ng build nb-common-demo --configuration=deploy && cp docs/index.html docs/404.html",
"publish:lib": "npm run build:lib && cd ./dist/nb-common && npm publish --access=public",
"copy:readmeCn": "cp projects/nb-common/README.CN.md dist/nb-common/",
"copy:changelog": "cp CHANGELOG.* dist/nb-common/",
"copy:license": "cp LICENSE dist/nb-common/",
"pack:lib": "cd ./dist/nb-common && npm pack",
"lint": "ng lint",
"lint:lib": "ng lint nb-common"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.1",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "^18.0.1",
"dayjs": "^1.11.10",
"lodash-es": "^4.17.21",
"rxjs": "~6.6.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.2",
"@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.2",
"@angular/compiler-cli": "^18.0.1",
"@types/jasmine": "~3.8.0",
"@types/lodash-es": "^4.17.5",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jasmine-core": "~3.8.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^18.0.0",
"source-map-explorer": "^2.5.3",
"prettier": "^3.2.5",
"typescript": "~5.4.5"
}
}