-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 980 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 980 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
34
35
36
37
38
{
"name": "ts-web-interview",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "src/index.tsx",
"dependencies": {
"@types/debounce-promise": "^3.1.6",
"@types/uuid": "^8.3.4",
"debounce-promise": "^3.1.2",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/lodash": "^4.14.195",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"concurrently": "^8.2.2",
"react-scripts": "^5.0.1",
"typescript": "^4.5.4"
},
"scripts": {
"start": "concurrently \"npm run start-frontend\" \"npm run start-api\"",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"start-frontend": "react-scripts start",
"start-api": "PYTHONUNBUFFERED=1 uv run api/app.py"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}