-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·94 lines (94 loc) · 3.33 KB
/
package.json
File metadata and controls
executable file
·94 lines (94 loc) · 3.33 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
94
{
"name": "@mprisma/components",
"version": "16.2.1",
"repository": {
"type": "git",
"url": "https://github.com/gabriel-gn/prisma-components.git"
},
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"prebuild": "npm i node-sass && node scripts/update-color-themes.js && node scripts/remove-styles-from-build.js",
"prebuild-storybook": "npm i node-sass --no-save && node scripts/update-color-themes.js && node scripts/remove-styles-from-build.js",
"build": "npm run build:lib --prod",
"postbuild": "node scripts/revert-git-changes.js && npm uninstall node-sass && npm i",
"postbuild-storybook": "node scripts/revert-git-changes.js && npm uninstall node-sass && npm i",
"build:lib": "ng build --configuration=production",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "npm run docs:json && ng run lib:storybook",
"build-storybook": "npm run docs:json && ng run lib:build-storybook",
"deploy-npm": "cd dist/components && npm publish --access=public"
},
"private": false,
"dependencies": {
"@angular/animations": "^16.1.4",
"@angular/cdk": "^16.1.4",
"@angular/common": "^16.1.4",
"@angular/compiler": "^16.1.4",
"@angular/core": "^16.1.4",
"@angular/forms": "^16.1.4",
"@angular/material": "^16.1.4",
"@angular/platform-browser": "^16.1.4",
"@angular/platform-browser-dynamic": "^16.1.4",
"@angular/router": "^16.1.4",
"@storybook/addon-docs": "^7.1.0-beta.1",
"@storybook/addons": "^7.1.0-beta.1",
"@storybook/components": "^7.1.0-beta.1",
"@types/lodash": "^4.14.178",
"angular2-hotkeys": "^15.0.0",
"autoprefixer": "^10.3.7",
"bootstrap": "^5.1.3",
"lodash": "^4.17.21",
"ngx-cookie-service": "^16.0.0",
"popper.js": "^1.16.1",
"postcss-flexbugs-fixes": "^5.0.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rxjs": "^7.4.0",
"shelljs": "^0.8.5",
"tslib": "^2.3.0",
"zone.js": "^0.13.1"
},
"peerDependencies": {
"@types/lodash": "^4.14.178",
"angular2-hotkeys": "^15.0.0",
"bootstrap": "^5.1.3",
"lodash": "^4.17.21",
"popper.js": "^1.16.1",
"rxjs": "^7.4.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.4",
"@angular/cli": "^16.1.4",
"@angular/compiler-cli": "^16.1.4",
"@angular/elements": "^16.1.4",
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@compodoc/compodoc": "^1.1.18",
"@schematics/angular": "^16.1.4",
"@storybook/addon-actions": "^7.1.0-beta.1",
"@storybook/addon-essentials": "^7.1.0-beta.1",
"@storybook/addon-links": "^7.1.0-beta.1",
"@storybook/addon-mdx-gfm": "^7.1.0-beta.1",
"@storybook/angular": "^7.1.0-beta.1",
"@types/jasmine": "^3.10.0",
"@types/node": "^18.16.19",
"@webcomponents/custom-elements": "^1.5.0",
"angular2-hotkeys": "^15.0.0",
"babel-loader": "^8.2.3",
"jasmine-core": "^3.10.0",
"karma": "^6.3.12",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.1.0",
"karma-jasmine": "^4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "^16.1.0",
"raw-loader": "^4.0.2",
"storybook": "^7.1.0-beta.1",
"typescript": "^5.1.6"
}
}