-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.87 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
{
"name": "neo-angular-library",
"description": "An Angular implementation of the Avaya Neo Design system.",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://design.avaya.com/docs/setup",
"scripts": {
"storybook": "ng run examples:storybook",
"clean": "rm -rf .angular dist storybook-static",
"lint": "ng lint",
"format": "npx prettier --write ./projects/examples/src --log-level warn",
"format:check": "npx prettier --check ./projects/examples/src --log-level warn",
"build": "ng build",
"build:netlify": "npm i && npm run build && npm run build-storybook",
"build:github": "npm i && npm run lint && npm run format:check && npm run test && npm run build:release",
"build:release": "ng build examples --configuration production",
"build-storybook": "ng run examples:build-storybook",
"test": "ng test --browsers ChromeHeadless --watch false --code-coverage",
"test:watch": "ng test --code-coverage",
"publish:lib": "npm publish ./dist/examples/",
"ng": "ng",
"start": "ng serve",
"watch": "ng build --watch --configuration development",
"all": "npm run clean && npm i && npm run lint && npm run format && npm run test && npm run build:release && npm run build-storybook"
},
"dependencies": {
"@angular/animations": "17.2.0",
"@angular/common": "17.2.0",
"@angular/compiler": "17.2.0",
"@angular/core": "17.2.0",
"@angular/forms": "17.2.0",
"@angular/platform-browser": "17.2.0",
"@angular/platform-browser-dynamic": "17.2.0",
"@angular/router": "17.2.0",
"@avaya/neo": "3.80.3",
"lodash-es": "4.17.21",
"rxjs": "7.8.0",
"tslib": "2.3.0",
"zone.js": "0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.2.1",
"@angular-eslint/builder": "17.2.1",
"@angular-eslint/eslint-plugin": "17.2.1",
"@angular-eslint/eslint-plugin-template": "17.2.1",
"@angular-eslint/schematics": "17.2.1",
"@angular-eslint/template-parser": "17.2.1",
"@angular/cli": "17.2.1",
"@angular/compiler-cli": "17.2.0",
"@storybook/addon-a11y": "7.6.17",
"@storybook/addon-essentials": "7.6.17",
"@storybook/addon-interactions": "7.6.17",
"@storybook/addon-links": "7.6.17",
"@storybook/angular": "7.6.17",
"@storybook/blocks": "7.6.17",
"@storybook/test": "7.6.17",
"@types/jasmine": "5.1.0",
"@types/lodash-es": "4.17.5",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"eslint": "8.56.0",
"eslint-plugin-storybook": "0.8.0",
"jasmine-core": "5.1.0",
"karma": "6.4.0",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"ng-packagr": "17.2.0",
"prettier": "3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"storybook": "7.6.17",
"typescript": "5.3.2"
}
}