forked from iamtharun/tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
158 lines (158 loc) · 4.35 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "@ngneat/tailwind",
"version": "7.0.3",
"license": "MIT",
"description": "A schematic that adds TailwindCSS to Angular applications",
"author": "Chau Tran",
"maintainers": [
{
"name": "Chau Tran",
"url": "https://twitter.com/Nartc1410"
},
{
"name": "Vlad Tansky",
"url": "https://twitter.com/vltansky"
},
{
"name": "Bram Borggreve",
"url": "https://twitter.com/beeman_nl"
}
],
"keywords": [
"tailwindcss",
"angular",
"cli",
"schematics"
],
"repository": {
"type": "git",
"url": "https://github.com/ngneat/tailwind.git"
},
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js",
"nx": "nx",
"start": "ng serve",
"build": "ng run tailwind:build-copy",
"test": "ng test",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx workspace-lint && nx affected:lint --base=main",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write --base=main",
"format:check": "nx format:check",
"update": "nx migrate latest",
"dep-graph": "nx dep-graph",
"help": "nx help",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors init",
"commit": "git-cz",
"publish": "cd dist/libs/tailwind && npm publish",
"release": "release-it",
"workspace-generator": "nx workspace-generator"
},
"publishConfig": {
"access": "public"
},
"dependencies": {},
"devDependencies": {
"@angular/cli": "12.0.0",
"@nrwl/angular": "12.3.4",
"@nrwl/cli": "12.3.4",
"@nrwl/eslint-plugin-nx": "12.3.4",
"@nrwl/jest": "12.3.4",
"@nrwl/nx-plugin": "12.3.4",
"@nrwl/tao": "12.3.4",
"@nrwl/workspace": "12.3.4",
"@release-it/bumper": "2.0.0",
"@release-it/conventional-changelog": "2.0.1",
"@schematics/angular": "12.0.0",
"@types/fs-extra": "9.0.10",
"@types/jest": "26.0.22",
"@types/node": "14.14.37",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "4.21.0",
"@typescript-eslint/parser": "4.21.0",
"all-contributors-cli": "6.20.0",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"dotenv": "8.2.0",
"eslint": "7.23.0",
"eslint-config-prettier": "8.1.0",
"fs-extra": "9.1.0",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"release-it": "14.5.1",
"rimraf": "3.0.2",
"simple-git-hooks": "2.3.1",
"ts-jest": "26.5.5",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typescript": "4.2.4"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"npm run affected:lint",
"npm run format:write"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"types": {
"chore": {
"description": "🤖 Build process or auxiliary tool changes",
"value": "chore"
},
"ci": {
"description": "🎡 CI related changes",
"value": "ci"
},
"docs": {
"description": "️✏️ Documentation only changes",
"value": "docs"
},
"feat": {
"description": "🎸 A new feature",
"value": "feat"
},
"fix": {
"description": "🐛 A bug fix",
"value": "fix"
},
"perf": {
"description": "️⚡ A code change that improves performance",
"value": "perf"
},
"refactor": {
"description": "💡 A code change that neither fixes a bug or adds a feature",
"value": "refactor"
},
"release": {
"description": "🏹 Create a release commit",
"value": "release"
},
"style": {
"description": "💄 Markup, white-space, formatting, missing semi-colons...",
"value": "style"
},
"test": {
"description": "💍 Adding missing tests",
"value": "test"
}
}
}
}
}