-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 3.45 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "radius-angular",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"dev": "ng serve demo",
"start": "ng serve",
"build": "npm run build:demo && npm run build:ds && npm run build-storybook",
"build:demo": "ng build demo --configuration production",
"build:ds": "ng build --configuration production",
"build-storybook": "npm run docs:json && build-storybook",
"lint": "npm-run-all -p -c lint:*",
"lint:css": "stylelint 'projects/**/*.{css,scss}'",
"lint:js": "eslint '**/*.js'",
"lint:ts": "eslint '**/*.ts'",
"watch": "ng build --watch --configuration development",
"pretest": "npm run lint",
"test": "npm run test:demo && npm run test:ds",
"test:demo": "jest --config ./projects/demo/jest.config.js",
"test:demo:watch": "jest --config ./projects/demo/jest.config.js --watch",
"test:ds": "jest --config ./projects/ds/jest.config.js --passWithNoTests",
"test:ds:watch": "jest --config ./projects/ds/jest.config.js --passWithNoTests --watch",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "npm run docs:json && start-storybook",
"chromatic": "chromatic --exit-zero-on-changes"
},
"private": false,
"dependencies": {
"@angular/animations": "~12.2.16",
"@angular/common": "~12.2.16",
"@angular/compiler": "~12.2.16",
"@angular/core": "~12.2.16",
"@angular/forms": "~12.2.16",
"@angular/platform-browser": "~12.2.16",
"@angular/platform-browser-dynamic": "~12.2.16",
"@angular/router": "~12.2.16",
"@geometricpanda/storybook-addon-badges": "^0.2.1",
"rxjs": "~6.6.0",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "13.0.3",
"@angular-devkit/build-angular": "12.0.5",
"@angular-eslint/eslint-plugin": "^13.1.0",
"@angular-eslint/eslint-plugin-template": "^13.1.0",
"@angular/cli": "~12.2.16",
"@angular/compiler-cli": "~12.2.16",
"@angular/elements": "^12.2.6",
"@babel/core": "^7.15.5",
"@compodoc/compodoc": "^1.1.19",
"@storybook/addon-a11y": "^6.5.6",
"@storybook/addon-actions": "^6.5.6",
"@storybook/addon-essentials": "^6.5.6",
"@storybook/addon-links": "^6.5.6",
"@storybook/addon-toolbars": "^6.5.6",
"@storybook/angular": "^6.5.6",
"@storybook/builder-webpack5": "^6.5.6",
"@storybook/manager-webpack5": "^6.5.6",
"@types/jest": "27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@webcomponents/custom-elements": "^1.5.0",
"babel-loader": "^8.2.2",
"chromatic": "^6.3.4",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.9.7",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-storybook": "^0.5.12",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "27.5.1",
"ng-packagr": "^12.0.0",
"npm-run-all": "^4.1.5",
"postcss-import": "^14.0.0",
"postcss-loader": "6.2.1",
"postcss-preset-env": "7.4.2",
"postcss-scss": "^4.0.3",
"react-textarea-autosize": "^8.3.4",
"storybook-design-token": "^2.2.0",
"stylelint": "^14.5.3",
"stylelint-config-prettier": "^9.0.3",
"stylelint-prettier": "^2.0.0",
"stylelint-suitcss": "^5.0.0",
"typescript": "~4.2.3"
}
}