-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.94 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.94 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"author": {
"email": "madliani@hotmail.com",
"name": "madliani",
"url": "https://madliani.github.io"
},
"bugs": {
"email": "madiliani@hotmail.com",
"url": "https://github.com/madliani/reactify/issues"
},
"cpu": [
"x64"
],
"dependencies": {
"jotai": "^2.17.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-router-dom": "^6.30.3",
"styled-components": "^6.3.8"
},
"description": "The React Starter Kit.",
"devDependencies": {
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.3.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.19.31",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@types/react-helmet": "^6.1.11",
"@types/styled-components": "^5.1.36",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.11.0",
"@vitest/coverage-v8": "^1.6.1",
"@vitest/ui": "^1.6.1",
"autoprefixer": "^10.4.24",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-no-unsanitized": "^4.1.4",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-regexp": "^2.10.0",
"eslint-plugin-sonarjs": "^0.24.0",
"eslint-plugin-sort": "^2.12.0",
"eslint-plugin-testing-library": "^6.5.0",
"happy-dom": "^13.10.1",
"node-notifier": "^10.0.1",
"postcss": "^8.5.6",
"postcss-modules": "^6.0.1",
"postcss-preset-env": "^9.6.0",
"postcss-styled-syntax": "^0.6.4",
"prettier": "3.2.5",
"stylelint": "^16.26.1",
"stylelint-config-clean-order": "^5.4.2",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-no-unsupported-browser-features": "^8.0.5",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.14.0",
"stylelint-selector-bem-pattern": "^4.0.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^5.4.21",
"vite-plugin-compression2": "^1.4.0",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^1.6.1"
},
"engines": {
"node": ">=20.9.0"
},
"engineStrict": false,
"homepage": "https://github.com/madliani/reactify",
"keywords": [
"happy-dom",
"jotai",
"react-helmet",
"react-router",
"react",
"reactify",
"styled-components",
"testing-library",
"typescript",
"vite",
"vitest",
"yarn"
],
"license": "AGPL-3.0-or-later",
"name": "reactify",
"os": [
"darwin",
"linux",
"win32"
],
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/madliani/reactify.git"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"format": "prettier --write './src/**/*.{ts,tsx}' './tests/**/*.test.{ts,tsx}'",
"lint": "stylelint --fix './src/**/*.{ts,tsx}' './tests/**/*.test.{ts,tsx}' && eslint --fix './src/**/*.{ts,tsx}' './tests/**/*.test.{ts,tsx}' && tsc --noEmit",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest run --ui",
"test": "vitest run"
},
"type": "module",
"version": "1.0.0"
}