-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 2.06 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
{
"name": "raar-ui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --configuration production && npm run package",
"package": "cd dist/raar-ui && gzip -kf *.js *.css && tar czf ../raar-ui.tar.gz .",
"lint": "ng lint",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:once": "npm run cy:once:prepare && npm run cy:once:serve_and_run",
"cy:once:serve_and_run": "run-p --race cy:once:serve cy:run",
"cy:once:prepare": "npm run build:prod && ln -sf index.html dist/raar-ui/404.html",
"cy:once:serve": "http-server ./dist/raar-ui -a localhost -p 4200 -c-1",
"format": "prettier --write \"./**/*.{js,ts,json,css,scss,html,md,yaml}\""
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.1",
"@angular/common": "^18.0.1",
"@angular/compiler": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@angular/router": "^18.0.1",
"bootstrap-sass": "^3.4.1",
"core-js": "^3.6.4",
"dayjs": "^1.11.6",
"ng2-date-picker": "^17.0.0",
"ngx-infinite-scroll": "^18.0.0",
"rxjs": "^6.5.4",
"soundmanager2": "^2.97.20170602",
"tslib": "^2.0.0",
"zone.js": "~0.14.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.2",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "^18.0.2",
"@angular/compiler-cli": "^18.0.1",
"@angular/language-service": "^18.0.1",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"cypress": "^13.3.0",
"eslint": "^8.57.0",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.0",
"ts-node": "^8.8.1",
"typescript": "^5.4.5"
}
}