-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
{
"name": "user-roulette",
"private": true,
"version": "1.1.0",
"type": "commonjs",
"author": {
"name": "Rodrigo G. Oliveira",
"email": "[email protected]",
"url": "https://gargani.dev"
},
"homepage": "https://roulette.gargani.dev",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest watch",
"test:no-watch": "vitest run",
"test:coverage": "npm run test:no-watch -- --coverage --watch false",
"test:badges": "npm run test:coverage && jest-coverage-badges --output './badges'",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint --fix 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx,css,md,json}'",
"husky": "husky install"
},
"dependencies": {
"@preact/signals": "^1.1.3",
"history": "^5.3.0",
"i18next": "^22.4.14",
"nanoid": "^4.0.2",
"preact": "^10.13.0",
"preact-router": "^4.1.0",
"react-i18next": "^12.2.0"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx-source": "^7.19.6",
"@preact/compat": "^17.1.2",
"@preact/preset-vite": "^2.5.0",
"@testing-library/preact": "^3.2.3",
"@types/enzyme": "^3.10.12",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"c8": "^7.13.0",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^4.1.0",
"eslint": "^8.38.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.57.0",
"eslint-plugin-tailwindcss": "^3.11.0",
"eslint-plugin-vitest": "^0.1.4",
"eslint-plugin-vitest-globals": "^1.3.1",
"happy-dom": "^9.8.4",
"husky": "^8.0.3",
"jest-coverage-badges": "^1.1.2",
"jsdom": "^21.1.1",
"msw": "^1.2.1",
"postcss": "^8.4.22",
"postcss-cli": "^10.1.0",
"postcss-preset-env": "^8.3.1",
"prettier": "^2.8.7",
"react-dom": "npm:@preact/compat@^17.1.2",
"tailwindcss": "^3.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^4.1.0",
"vitest": "^0.16.0",
"vitest-dom": "^0.0.4"
}
}