-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.96 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.96 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
{
"name": "dump-data",
"version": "0.2.0",
"private": true,
"type": "module",
"description": "RingID Monorepo - Legacy web frontend with monorepo structure",
"engines": {
"node": ">=18"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"setup": "pnpm install",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"migrate": "bash scripts/migrate-content.sh",
"test": "cd tests && karma start karma.conf.cjs --single-run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"lint": "eslint apps/*/app/**/*.js packages/**/*.js",
"format": "prettier --write apps/*/app/**/*.js packages/**/*.js",
"audit": "pnpm audit --audit-level moderate",
"prepare": "husky",
"validate-build": "bash scripts/validate-build.sh",
"check-bundle-size": "node scripts/bundle-size-check.js"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.3",
"@playwright/test": "^1.59.1",
"angular-mocks": "^1.8.3",
"eslint": "^10.3.0",
"eslint-plugin-angular": "^5.0.0",
"husky": "^9.1.7",
"karma-babel-preprocessor": "^8.0.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-junit-reporter": "^2.0.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"puppeteer": "^24.42.0",
"rollup-plugin-visualizer": "^7.0.1",
"sass": "^1.99.0",
"vite": "^8.0.10",
"vite-plugin-imagemin": "^0.6.1"
},
"dependencies": {
"@uirouter/angularjs": "1.1.0",
"angular": "^1.8.3",
"angular-animate": "^1.8.3",
"angular-loader": "^1.8.3",
"angular-route": "^1.8.3",
"bootstrap": "^5.3.3",
"ng-device-detector": "^5.1.4",
"ngstorage": "^0.3.11"
}
}