-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·49 lines (49 loc) · 1.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
{
"name": "ngx-tailwind",
"version": "4.0.0",
"description": "Add Tailwind CSS to an Angular Workspace",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -p tsconfig.json --watch",
"test": "npm run build && jasmine src/**/*_spec.js",
"start:dev": "npm run build && cd angular-workspace && schematics ..:ng-add",
"start": "npm run build && cd angular-workspace && schematics ..:ng-add --debug false",
"changelog": "conventional-changelog -p angular -i ./CHANGELOG.md -s",
"rocket": "npm run build && npm publish"
},
"keywords": [
"angular",
"schematics",
"tailwindcss"
],
"author": "Gary Großgarten",
"contributors": [
{
"name": "Marc Stammerjohann",
"url": "https://notiz.dev/authors/marc-stammerjohann"
}
],
"license": "MIT",
"schematics": "./src/collection.json",
"repository": {
"type": "git",
"url": "https://github.com/notiz-dev/ngx-tailwind.git"
},
"bugs": {
"url": "https://github.com/notiz-dev/ngx-tailwind/issues"
},
"ng-add": {
"save": "devDependencies"
},
"dependencies": {
"@angular-devkit/core": "^14.0.5",
"@angular-devkit/schematics": "^14.0.5",
"@angular/cdk": "~14.0.4",
"@schematics/angular": "^14.0.5"
},
"devDependencies": {
"@types/node": "^16.11.7",
"prettier": "~2.7.1",
"typescript": "~4.7.4"
}
}