-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.24 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
{
"name": "pwl",
"version": "0.0.0-semantically-released",
"description": "Static web application to reveal character types in a password",
"type": "module",
"author": {
"name": "Justin Hall",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wKovacs64/pwl.git"
},
"bugs": {
"url": "https://github.com/wKovacs64/pwl/issues"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"format": "prettier --cache --write .",
"format:check": "prettier --cache --check .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"preview": "vite --host 127.0.0.1 preview",
"test": "npm run test:e2e:open",
"test:e2e:open": "playwright test --ui",
"test:e2e:run": "cross-env CI=true playwright test",
"typecheck": "tsc"
},
"private": true,
"dependencies": {
"@axe-core/playwright": "4.10.1",
"@babel/core": "7.26.0",
"@babel/parser": "7.26.3",
"@babel/plugin-syntax-jsx": "7.25.9",
"@fontsource/nunito": "5.1.0",
"@fontsource/source-sans-3": "5.1.0",
"@playwright/test": "1.49.1",
"@types/lodash": "4.17.13",
"@types/ms": "0.7.34",
"@types/node": "22.10.2",
"@types/node-fetch": "2.6.12",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react-swc": "3.7.2",
"@wkovacs64/eslint-config": "7.4.0",
"@wkovacs64/prettier-config": "4.1.1",
"@xstate/react": "5.0.1",
"autoprefixer": "10.4.20",
"axe-core": "4.10.2",
"clsx": "2.1.1",
"cross-env": "7.0.3",
"eslint": "9.17.0",
"git-current-commit": "1.1.0",
"hibp": "14.1.2",
"history": "5.3.0",
"lodash": "4.17.21",
"memoize-one": "6.0.0",
"mobile-detect": "1.4.5",
"ms": "2.1.3",
"postcss": "8.4.49",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "5.4.0",
"react-router": "7.1.1",
"semantic-release": "24.2.0",
"tailwindcss": "3.4.17",
"typescript": "5.7.2",
"vite": "5.4.11",
"vite-plugin-pwa": "0.21.1",
"workbox-build": "7.3.0",
"workbox-window": "7.3.0",
"xstate": "5.19.1"
}
}