-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.97 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
{
"name": "stoic-quote",
"author": "Natalie Pina",
"version": "0.1.0",
"description": "A Collection of Stoic Quotes",
"private": true,
"homepage": "https://nataliepina.github.io/stoic-quote",
"keywords": [
"stoicism",
"quote generator",
"react",
"stoic",
"daily stoic quotes",
"typescript"
],
"dependencies": {
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.1",
"@testing-library/user-event": "14.5.2",
"@vitejs/plugin-react": "4.2.1",
"gh-pages": "6.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "5.0.1",
"react-loader-spinner": "6.1.6",
"stoic-quotes": "1.1.0",
"styled-components": "6.1.8",
"vite": "5.1.2",
"vite-tsconfig-paths": "4.3.1",
"vitest": "1.2.2"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test:types": "tsc --noEmit",
"lint": "eslint './src/**/*.{jsx,tsx,ts}'",
"lint:fix": "eslint './src/**/*.{jsx,tsx,ts}' --fix",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "20.11.17",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"@types/react-loader-spinner": "3.1.3",
"@types/styled-components": "5.1.34",
"@typescript-eslint/eslint-plugin": "7.0.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.2",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"typescript": "5.3.3",
"vite-plugin-svgr": "4.2.0"
}
}