forked from newwwton/angular-tailwind-storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.41 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
{
"name": "angular-tailwind-storybook",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"lint": "tsc --noEmit && eslint . --ext js,ts,json --quiet --fix",
"generate-icons": "svg-generator",
"docs:json": "compodoc -p ./tsconfig.json -e json -d .",
"storybook": "npm run docs:json && start-storybook -p 6006 -s src/assets/favicons/",
"build-storybook": "NODE_ENV=production npm run docs:json && build-storybook -s src/assets/favicons/",
"static-storybook": "NODE_ENV=production npm run docs:json && build-storybook -s src/assets/favicons/ -c .storybook -o .out"
},
"private": true,
"dependencies": {
"@angular/animations": "~12.0.1",
"@angular/common": "~12.0.1",
"@angular/compiler": "~12.0.1",
"@angular/core": "~12.0.1",
"@angular/forms": "~12.0.1",
"@angular/platform-browser": "~12.0.1",
"@angular/platform-browser-dynamic": "~12.0.1",
"@angular/router": "^12.0.1",
"@ngneat/svg-icon": "^3.2.0",
"@ngneat/tailwind": "^7.0.3",
"bluebird": "^3.7.2",
"rxjs": "~6.6.0",
"tslib": "^2.1.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.0.1",
"@angular/cli": "~12.0.1",
"@angular/compiler-cli": "~12.0.1",
"@angular/elements": "^12.0.1",
"@babel/core": "^7.14.3",
"@compodoc/compodoc": "^1.1.11",
"@ngneat/svg-generator": "^2.0.0",
"@storybook/addon-actions": "^6.3.0-rc.7",
"@storybook/addon-essentials": "^6.3.0-rc.7",
"@storybook/addon-links": "^6.3.0-rc.7",
"@storybook/angular": "^6.3.0-rc.7",
"@storybook/builder-webpack5": "^6.3.0-rc.7",
"@storybook/manager-webpack5": "^6.3.0-rc.7",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@webcomponents/custom-elements": "^1.4.3",
"babel-loader": "^8.2.2",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.0",
"prettier-eslint": "^12.0.0",
"storybook-addon-angular-ivy": "0.0.1",
"tailwindcss": "2.1.2",
"typescript": "~4.2.3"
},
"svgGenerator": {
"outputPath": "./src/app/svg",
"prefix": "",
"srcPath": "./src/assets/svg",
"svgoConfig": {
"plugins": [
{
"removeDimensions": true,
"cleanupAttrs": true
}
]
}
}
}