-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 839 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 839 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
{
"name": "take-home-assignment",
"version": "1.0.0",
"private": true,
"type": "module",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"api-proxy": "lcp --proxyUrl http://v0.postcodeapi.com.au",
"dev-server": "vite",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"start": "concurrently --names 'WEB,API' -c 'bgBlue.bold,bgMagenta.bold' 'npm:dev-server' 'npm:api-proxy'"
},
"browserslist": [
">0.2%",
"not dead"
],
"devDependencies": {
"concurrently": "^8.2.2",
"local-cors-proxy": "^1.1.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"vite": "^5.1.4"
}
}