-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 830 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 830 Bytes
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
{
"name": "coding-challenge",
"private": true,
"version": "1.0.0",
"scripts": {
"check": "prettier --check '{**/*,*}.{js,ts,jsx,tsx,yml,json}'",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@emotion/css": "^11.9.0",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"devDependencies": {
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
"@vitejs/plugin-react": "1.3.2",
"prettier": "^2.6.2",
"typescript": "4.6.4",
"vite": "2.9.9"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"semi": false
},
"packageManager": "yarn@3.2.1"
}