-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.3 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
{
"name": "pwl",
"version": "0.0.0-semantically-released",
"description": "Static web application to reveal character types in a password",
"type": "module",
"author": {
"name": "Hans Temu",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hanshat/pwl.git"
},
"bugs": {
"url": "https://github.com/hanshat/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.8.5",
"@babel/core": "7.24.0",
"@babel/parser": "7.24.0",
"@babel/plugin-syntax-jsx": "7.23.3",
"@fontsource/nunito": "5.0.17",
"@fontsource/source-sans-3": "5.0.19",
"@playwright/test": "1.42.1",
"@types/lodash": "4.17.0",
"@types/ms": "0.7.34",
"@types/node": "20.11.28",
"@types/node-fetch": "2.6.11",
"@types/react": "18.2.66",
"@types/react-dom": "18.2.22",
"@vitejs/plugin-react-swc": "3.6.0",
"@wkovacs64/prettier-config": "3.0.3",
"@xstate/react": "4.1.0",
"autoprefixer": "10.4.18",
"axe-core": "4.8.4",
"clsx": "2.1.0",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"eslint-plugin-playwright": "1.5.2",
"eslint-plugin-wkovacs64": "16.1.0",
"git-current-commit": "1.1.0",
"hibp": "14.0.3",
"history": "5.3.0",
"lodash": "4.17.21",
"memoize-one": "6.0.0",
"mobile-detect": "1.4.5",
"ms": "2.1.3",
"npm-run-all2": "6.1.2",
"postcss": "8.4.35",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.12",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "5.0.1",
"react-router-dom": "6.22.3",
"semantic-release": "23.0.3",
"tailwindcss": "3.4.1",
"typescript": "5.4.2",
"vite": "5.1.6",
"vite-plugin-pwa": "0.19.3",
"workbox-build": "7.0.0",
"workbox-window": "7.0.0",
"xstate": "5.9.1"
}
}