-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathpackage.json
147 lines (147 loc) Β· 6.03 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
{
"name": "ngx-ui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"bundle-report": "webpack-bundle-analyzer dist/ngx-ui/stats.json",
"prestart": "yarn build:css",
"start": "ng serve --port 4200",
"prestart-prod": "yarn build:lib",
"start-prod": "ng serve --configuration production --port 4200",
"build": "yarn build:lib && ng build ngx-ui --configuration production",
"build:demo": "cross-env NODE_ENV=production ng build --configuration production --statsJson=true",
"build:deploy": "cross-env NODE_ENV=production yarn build:lib && ng build ngx-ui --configuration production --base-href=\"/ngx-ui/\"",
"build:lib": "ng build @swimlane/ngx-ui --configuration production && yarn build:css",
"build:testing-lib": "ng build @swimlane/ngx-ui-testing --configuration production",
"build:css": "node scripts/prep-global-styles.js && yarn copy-files",
"build:schematics": "tsc -p ./projects/swimlane/ngx-ui-schematics/tsconfig.json",
"build:schematics:dev": "tsc -p ./projects/swimlane/ngx-ui-schematics/tsconfig.json --watch",
"copy-schematics": "cpx ./projects/swimlane/ngx-ui-schematics/src/collection.json ./dist/swimlane/ngx-ui-schematics/",
"copy-files": "cpx ./README.md ./dist/swimlane/ngx-ui/ && cpx LICENSE dist/swimlane/ngx-ui/ && cpx ./projects/swimlane/ngx-ui/CHANGELOG.md dist/swimlane/ngx-ui/",
"test": "yarn test:prettier && yarn test:lint && yarn test:unit && yarn test:integration",
"test:prettier": "prettier --check \"{src,projects,cypress}/**/*.{js,ts,scss,css,md,json}\"",
"test:lint": "ng lint",
"test:unit": "TZ=America/Los_Angeles ng test @swimlane/ngx-ui --watch=false --progress=false --browsers=ChromeHeadlessCI --ts-config tsconfig.spec.json",
"test:integration": "start-server-and-test start http-get://localhost:4200 cypress:run",
"fix": "yarn fix:prettier && yarn fix:lint",
"fix:prettier": "prettier --write \"{src,projects,cypress}/**/*.{js,ts,scss,css,md,json}\"",
"fix:lint": "ng lint --fix",
"watch:unit": "TZ=America/Los_Angeles ng test @swimlane/ngx-ui --watch --ts-config tsconfig.spec.json",
"cypress:run": "TZ=America/Los_Angeles cypress run",
"cypress:open": "TZ=America/Los_Angeles cypress open",
"package": "yarn build:lib",
"predeploy": "yarn build:lib && yarn build:deploy",
"deploy": "angular-cli-ghpages --dir ./dist/ngx-ui --name=Swimlane [email protected]",
"prepublish:lib": "yarn package",
"publish": "npm publish ./dist/swimlane/ngx-ui --ignore-scripts",
"prepack": "yarn package",
"pack": "npm pack ./dist/swimlane/ngx-ui",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.3",
"@angular/cdk": "^19.1.1",
"@angular/common": "^19.1.3",
"@angular/compiler": "^19.1.3",
"@angular/core": "^19.1.3",
"@angular/flex-layout": "12.0.0-beta.35",
"@angular/forms": "^19.1.3",
"@angular/platform-browser": "^19.1.3",
"@angular/router": "^19.1.3",
"@types/json-schema": "7.0.11",
"ajv": "8.12.0",
"codemirror": "5.65.8",
"d3-color": "3.1.0",
"moment-timezone": "0.5.37",
"mousetrap": "^1.6.5",
"ng-in-viewport": "13.0.0",
"ng2-file-upload": "^8.0.0",
"prismjs": "1.29.0",
"resize-observer-polyfill": "^1.5.1",
"rxjs": "7.8.1",
"tslib": "2.4.0"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^19.0.0",
"@angular-devkit/build-angular": "^19.1.4",
"@angular-devkit/core": "^19.1.4",
"@angular-devkit/schematics": "^19.1.4",
"@angular-eslint/builder": "^18.0.0",
"@angular-eslint/eslint-plugin": "^18.0.0",
"@angular-eslint/eslint-plugin-template": "^18.0.0",
"@angular-eslint/schematics": "^18.0.0",
"@angular-eslint/template-parser": "^18.0.0",
"@angular/cli": "^19.1.4",
"@angular/compiler-cli": "^19.1.3",
"@angular/language-service": "^19.1.3",
"@angular/platform-browser-dynamic": "^19.1.3",
"@open-wc/semantic-dom-diff": "0.19.7",
"@schematics/angular": "^19.1.4",
"@swimlane/eslint-config": "^2.0.0",
"@swimlane/prettier-config-swimlane": "^3.0.2",
"@types/codemirror": "5.60.5",
"@types/faker": "^4.1.11",
"@types/jasmine": "4.3.0",
"@types/moment-timezone": "^0.5.13",
"@types/mousetrap": "1.6.9",
"@types/node": "16.11.59",
"@types/prismjs": "1.26.0",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"@typescript-eslint/types": "8.23.0",
"@typescript-eslint/utils": "8.23.0",
"@web/test-runner": "^0.19.0",
"angular-cli-ghpages": "2.0.3",
"autoprefixer": "10.4.11",
"axe-core": "4.4.3",
"clean-css": "5.3.1",
"core-js": "^2.6.11",
"cpx": "^1.5.0",
"cross-env": "^7.0.2",
"cypress": "^13.11.0",
"cypress-axe": "^1.5.0",
"cypress-real-events": "^1.12.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "39.3.6",
"eslint-plugin-no-only-tests": "3.0.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-security": "1.5.0",
"faker": "^5.1.0",
"gh-pages": "4.0.0",
"husky": "8.0.1",
"jasmine-core": "5.5.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"moment": "2.29.4",
"moment-locales-webpack-plugin": "^1.2.0",
"moment-timezone-data-webpack-plugin": "1.5.1",
"ng-packagr": "19.1.1",
"ngx-moment": "6.0.2",
"npm-run-all": "^4.1.5",
"postcss": "8.4.16",
"postcss-url": "10.1.3",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"shallow-render": "18.0.0",
"start-server-and-test": "1.14.0",
"ts-node": "10.9.1",
"typescript": "5.7.3",
"webpack": "5.74.0",
"webpack-bundle-analyzer": "4.6.1",
"zone.js": "~0.15.0"
},
"volta": {
"node": "20.14.0",
"yarn": "4.5.1"
},
"packageManager": "[email protected]"
}