forked from scheduleonce/once-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.86 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.86 KB
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
93
{
"name": "oncehub-ui",
"version": "7.0.5",
"scripts": {
"ng": "ng",
"build": "ng build ui",
"postbuild": "gulp copy",
"test": "ng test ui",
"lint": "ng lint ui --format stylish",
"prettier": "prettier --list-different \"**/*.{ts,js,css,scss,md,html}\"",
"fix:prettier": "prettier --write \"**/*.{ts,js,css,scss,md,html}\"",
"fix:lint": "ng lint ui --fix --format stylish",
"bundle-styles": "npm run bundle-styles-blue && npm run compile-scss-blue && npm run bundle-styles-green && npm run compile-scss-green",
"bundle-styles-blue": "scss-bundle -e ./ui/src/components/core/themes/once-ui-theme-blue.scss -o ./dist/ui/themes/once-ui-theme-blue.scss",
"bundle-styles-green": "scss-bundle -e ./ui/src/components/core/themes/once-ui-theme-green.scss -o ./dist/ui/themes/once-ui-theme-green.scss",
"compile-scss-blue": "sass ./dist/ui/themes/once-ui-theme-blue.scss ./dist/ui/themes/once-ui-theme-blue.css && rimraf ./dist/ui/themes/once-ui-theme-blue.scss",
"compile-scss-green": "sass ./dist/ui/themes/once-ui-theme-green.scss ./dist/ui/themes/once-ui-theme-green.css && rimraf -f ./dist/ui/themes/once-ui-theme-green.scss",
"npm-pack": "cd dist/ui && npm pack",
"package": "npm run build && npm run bundle-styles && npm run npm-pack",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"build-storybook": "npm run docs:json && build-storybook",
"storybook-css": "sass ui/src/components/core/theming/prebuilt:ui/src/stories/styles/themes",
"storybook": "npm run docs:json && start-storybook -p 6006",
"deploy-storybook": "npm run storybook-css && storybook-to-ghpages -o out"
},
"private": true,
"dependencies": {
"@angular-devkit/architect": "0.1302.4",
"@angular-devkit/core": "13.2.4",
"@angular/animations": "13.2.3",
"@angular/cdk": "13.2.2",
"@angular/common": "13.2.3",
"@angular/compiler": "13.2.3",
"@angular/core": "13.2.3",
"@angular/forms": "13.2.3",
"@angular/platform-browser": "13.2.3",
"@angular/platform-browser-dynamic": "13.2.3",
"@angular/router": "13.2.3",
"core-js": "3.22.1",
"rxjs": "7.5.5",
"tslib": "2.3.1",
"zone.js": "0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.2.4",
"@angular-eslint/builder": "13.1.0",
"@angular-eslint/eslint-plugin": "13.1.0",
"@angular-eslint/eslint-plugin-template": "13.1.0",
"@angular-eslint/template-parser": "13.1.0",
"@angular/cli": "13.2.4",
"@angular/compiler-cli": "13.2.3",
"@angular/elements": "13.2.3",
"@angular/language-service": "13.2.3",
"@babel/core": "7.17.9",
"@compodoc/compodoc": "1.1.19",
"@storybook/addon-actions": "6.4.22",
"@storybook/addon-controls": "^6.4.22",
"@storybook/addon-essentials": "6.4.22",
"@storybook/addon-links": "6.4.22",
"@storybook/angular": "6.4.22",
"@storybook/builder-webpack5": "6.4.22",
"@storybook/manager-webpack5": "6.4.22",
"@storybook/storybook-deployer": "2.8.11",
"@types/jasmine": "3.10.3",
"@types/node": "17.0.25",
"@typescript-eslint/eslint-plugin": "5.20.0",
"@typescript-eslint/parser": "5.20.0",
"@webcomponents/custom-elements": "1.5.0",
"babel-loader": "8.2.5",
"eslint": "8.13.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "37.9.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"gulp": "4.0.2",
"jasmine-core": "4.1.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.19",
"karma-chrome-launcher": "3.1.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"karma-junit-reporter": "2.0.1",
"ng-packagr": "13.3.1",
"prettier": "2.6.2",
"protractor": "7.0.0",
"puppeteer": "13.6.0",
"rimraf": "3.0.2",
"sass": "1.50.1",
"scss-bundle": "3.1.2",
"ts-node": "10.7.0",
"typescript": "4.5.5"
}
}