-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.28 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
{
"$schema": "https://json.schemastore.org/package",
"name": "@aldra-consulting/sso-web",
"version": "1.2.7",
"description": "Main entry point for Single Sign-On (SSO).",
"repository": {
"type": "git",
"url": "git@github.com:aldra-consulting/sso-web.git"
},
"author": {
"name": "Alexander Zakharov (azaxarov)",
"email": "alexander.zakharov@aldra.no"
},
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"build": "run-s clean compile build:qwik",
"build.client": "vite build",
"build.server": "vite build -c adapters/static/vite.config.ts",
"build:preview": "vite build --ssr src/entry.preview.tsx",
"build:qwik": "qwik build",
"clean": "run-p clean:lib clean:server clean:coverage",
"clean:coverage": "rimraf coverage",
"clean:lib": "rimraf lib",
"clean:server": "rimraf server",
"commit": "cz",
"compile": "run-s typescript:compile",
"debug": "run-s serve:debug",
"lint": "run-p lint:eslint lint:stylelint",
"lint:eslint": "eslint --ext ts,tsx,js,jsx,json .",
"lint:eslint:fix": "eslint --ext ts,tsx,js,jsx,json . --fix",
"lint:eslint:staged:fix": "eslint --ext ts,tsx,js,jsx,json --fix",
"lint:fix": "run-p lint:eslint:fix lint:stylelint:fix",
"lint:stylelint": "stylelint ./src/**/*.css",
"lint:stylelint:fix": "stylelint ./src/**/*.css --fix",
"lint:stylelint:staged:fix": "stylelint --fix",
"prepare": "husky install",
"serve:debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"serve:dev": "vite --mode ssr",
"start": "run-s serve:dev",
"test": "run-s clean:coverage test:jest",
"test:coverage": "run-s clean:coverage test:jest:coverage",
"test:jest": "jest --passWithNoTests",
"test:jest:coverage": "jest --passWithNoTests --coverage",
"test:watch": "jest --passWithNoTests --watchAll",
"typescript:compile": "tsc"
},
"devDependencies": {
"@aldra-consulting/eslint-config-typescript-react": "^1.0.1",
"@aldra-consulting/typescript-config": "^1.0.0",
"@builder.io/qwik": "^1.2.13",
"@builder.io/qwik-city": "^1.2.13",
"@builder.io/qwik-react": "0.5.0",
"@commitlint/cli": "^17.8.0",
"@commitlint/config-conventional": "^17.8.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.6",
"@types/react": "18.2.17",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-qwik": "^1.2.13",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.1",
"npm-run-all": "^4.1.5",
"oidc-client-ts": "^2.3.0",
"prettier": "^3.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.5",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vite": "^4.4.11",
"vite-tsconfig-paths": "^4.2.1"
}
}