-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.58 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3.58 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "ngx-material-entity",
"version": "0.0.0",
"scripts": {
"ci": "run-s test lint e2e:run",
"start": "npm run stack",
"stack": "run-s clear:dist stack:only",
"showcase": "ng serve --host 0.0.0.0 ngx-material-entity-showcase",
"build:watch": "ng build ngx-material-entity --watch",
"api": "nodemon --watch api-data.ts --watch api.ts --watch dist/ngx-material-entity/public-api.d.ts api.ts",
"test": "node --max_old_space_size=4096 ./node_modules/jest/bin/jest.js --config projects/ngx-material-entity/jest.config.ts",
"e2e": "concurrently --kill-others 'npm run stack' 'run-s waitOn:server cy:open'",
"e2e:run": "concurrently --kill-others --success first 'npm run stack' 'run-s waitOn:server cy:run'",
"cy:run": "cypress run --browser chrome",
"cy:open": "cypress open",
"lint": "node --max_old_space_size=4096 ./node_modules/eslint/bin/eslint.js ./ --max-warnings 0",
"lint:fix": "eslint ./ --fix",
"stack:only": "concurrently --kill-others 'npm run build:watch' 'run-s waitOn:build api' 'run-s waitOn:build showcase'",
"clear:dist": "rimraf dist/ngx-material-entity",
"waitOn:build": "wait-on dist/ngx-material-entity",
"waitOn:server": "wait-on http://0.0.0.0:4200",
"build": "ng build ngx-material-entity",
"build:prod": "run-s build copyToDist",
"copyToDist": "run-s copyToDist:readme copyToDist:contributing copyToDist:license",
"copyToDist:readme": "ncp ./README.md ./dist/ngx-material-entity/README.md",
"copyToDist:contributing": "ncp ./CONTRIBUTING.md ./dist/ngx-material-entity/CONTRIBUTING.md",
"copyToDist:license": "ncp ./LICENSE.md ./dist/ngx-material-entity/LICENSE.md"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.16",
"@angular/cdk": "^20.2.0",
"@angular/common": "^20.3.16",
"@angular/compiler": "~20.3.16",
"@angular/core": "~20.3.16",
"@angular/forms": "^20.3.16",
"@angular/material": "^20.2.0",
"@angular/platform-browser": "^20.3.16",
"@angular/platform-browser-dynamic": "^20.3.16",
"@angular/router": "^20.3.16",
"js2xmlparser": "^5.0.0",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.2.0",
"@angular/cli": "^20.3.15",
"@angular/compiler-cli": "^20.3.16",
"@angular/material-moment-adapter": "^20.2.0",
"@fortawesome/angular-fontawesome": "^3.0.0",
"@fortawesome/free-brands-svg-icons": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^7.0.0",
"@types/cross-spawn": "^6.0.6",
"@types/jest": "^30.0.0",
"@types/json-server": "^0.14.8",
"@types/lodash": "^4.17.20",
"@types/node": "^24.3.0",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.0",
"cypress": "^15.0.0",
"eslint-config-service-soft": "^2.1.6",
"jest": "^30.0.0",
"jest-preset-angular": "^16.1.1",
"json-server": "^0.17.4",
"ncp": "^2.0.0",
"ng-packagr": "^20.2.0",
"ngx-material-navigation": "20.2.2",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "~5.9.2",
"wait-on": "^8.0.4"
}
}