forked from ssuperczynski/ngx-easy-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.25 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
{
"name": "ngx-easy-table-app",
"version": "1.0.0",
"description": "ngx-easy-table app",
"typings": "index.ts",
"repository": "https://github.com/paddls/ngx-easy-table.git",
"scripts": {
"ng": "ng",
"start": "ng serve --project ngx-easy-table-app",
"build:ngx-easy-table-app": "ng build --project ngx-easy-table-app --configuration=production",
"build:ngx-easy-table-app:high-memory": "node --max_old_space_size=8000 ./node_modules/@angular/cli/bin/ng build --project ngx-easy-table-app --configuration=production",
"build:ngx-easy-table": "ng build --project ngx-easy-table && sass projects/ngx-easy-table/assets/style.scss dist/ngx-easy-table/style.css && cp projects/ngx-easy-table/assets/style.scss dist/ngx-easy-table/style.scss",
"lint": "ng lint",
"cy:serve": "http-server dist/ngx-easy-table-app -s -p 4202",
"cy:local": "ng serve --port=4202",
"cy:test": "cypress open",
"cy:open": "cypress open",
"cy:run": "cypress run --headless --browser chrome",
"cy:ci": "start-server-and-test cy:serve http://localhost:4202 cy:run",
"watch:ngx-easy-table": "ng build --project ngx-easy-table --watch",
"publish:ngx-easy-table": "npm run build:ngx-easy-table && cd dist/ngx-easy-table && npm publish",
"publish:ngx-easy-table:next": "npm run build:ngx-easy-table && cd dist/ngx-easy-table && npm publish --tag next"
},
"license": "MIT",
"dependencies": {
"@angular/animations": "^16.1.7",
"@angular/forms": "^16.1.7",
"@angular/material": "^16.1.6",
"export-to-csv": "^0.2.1",
"ngx-highlightjs": "^10.0.0",
"spectre.css": "^0.5.9",
"tslib": "^2.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~16.1.6",
"@angular-devkit/core": "^16.1.6",
"@angular-eslint/builder": "16.1.0",
"@angular-eslint/eslint-plugin": "16.1.0",
"@angular-eslint/eslint-plugin-template": "16.1.0",
"@angular-eslint/schematics": "16.1.0",
"@angular-eslint/template-parser": "16.1.0",
"@angular/cdk": "^16.1.6",
"@angular/cli": "^16.1.6",
"@angular/common": "^16.1.7",
"@angular/compiler": "^16.1.7",
"@angular/compiler-cli": "^16.1.7",
"@angular/core": "^16.1.7",
"@angular/language-service": "^16.1.7",
"@angular/platform-browser": "^16.1.7",
"@angular/platform-browser-dynamic": "^16.1.7",
"@angular/router": "^16.1.7",
"@types/node": "^18.16.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"bootstrap": "^4.6.0",
"cypress": "^12.2.0",
"eslint": "^8.39.0",
"http-server": "^14.1.0",
"husky": "^4.3.8",
"ng-packagr": "^16.1.0",
"rxjs": "~7.8.0",
"sass": "^1.51.0",
"start-server-and-test": "^1.14.0",
"ts-node": "^10.7.0",
"tslib": "^2.4.0",
"typescript": "~5.1.3",
"zone.js": "^0.13.1"
},
"engines": {
"node": ">=16.0.0 <19",
"npm": ">=6.0.0"
},
"engineStrict": true,
"bugs": {
"url": "https://github.com/paddls/ngx-easy-table/issues"
},
"homepage": "https://github.com/paddls/ngx-easy-table",
"main": "main.js",
"keywords": [
"angular",
"table",
"angular table",
"angular-table",
"ngx-easy-table"
],
"author": "Sebastian Superczynski <[email protected]>",
"volta": {
"node": "18.17.0"
}
}