-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.2 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
{
"name": "headlessui-angular",
"version": "0.0.9",
"license": "MIT",
"description": "Headless UI components for angular",
"scripts": {
"ng": "ng",
"start": "ng serve",
"serve:gitpod": "ng serve --public-host https://4200-${GITPOD_WORKSPACE_ID}.${GITPOD_WORKSPACE_CLUSTER_HOST}",
"build": "cross-env NODE_ENV=production ng build && cpy README.md dist/headlessui-angular",
"build:demo": "cross-env NODE_ENV=production ng build demo",
"watch": "ng build --watch --configuration development",
"test:watch": "ng test headlessui-angular",
"test": "ng test headlessui-angular --watch=false",
"test:ci": "ng test headlessui-angular --karma-config=projects/headlessui-angular/karma-ci.conf.js",
"lint": "ng lint headlessui-angular"
},
"private": true,
"dependencies": {
"@angular/animations": "~13",
"@angular/cdk": "~13",
"@angular/common": "~13",
"@angular/compiler": "~13",
"@angular/core": "~13",
"@angular/forms": "~13",
"@angular/platform-browser": "~13",
"@angular/platform-browser-dynamic": "~13",
"@angular/router": "~13",
"@ng-icons/core": "^16.0.0",
"@ng-icons/heroicons": "^16.0.0",
"rxjs": "~6",
"tslib": "~2",
"zone.js": "~0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13",
"@angular-eslint/builder": "~13",
"@angular-eslint/eslint-plugin": "~13",
"@angular-eslint/eslint-plugin-template": "~13",
"@angular-eslint/schematics": "~13",
"@angular-eslint/template-parser": "~13",
"@angular/cli": "~13",
"@angular/compiler-cli": "~13",
"@types/jasmine": "~3",
"@types/node": "~12",
"@typescript-eslint/eslint-plugin": "~5",
"@typescript-eslint/parser": "~5",
"autoprefixer": "~10",
"cpy-cli": "~4",
"cross-env": "~7",
"eslint": "~8",
"eslint-config-prettier": "~8",
"eslint-plugin-import": "~2",
"jasmine-core": "~3",
"karma": "~6",
"karma-chrome-launcher": "~3",
"karma-coverage": "~2",
"karma-jasmine": "~4",
"karma-jasmine-html-reporter": "~1",
"ng-packagr": "~13",
"postcss": "~8",
"prettier": "~2",
"prismjs": "^1.28.0",
"puppeteer": "~14",
"tailwindcss": "~3",
"typescript": "~4.4"
}
}