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
|
{
"name": "client",
"version": "0.1.0",
"description": "",
"scripts": {
"start": "vite",
"build": "vite build --outDir ttun/staticfiles",
"typecheck": "tsc --noEmit",
"typewatch": "tsc --noEmit --watch"
},
"license": "MIT",
"dependencies": {
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.3"
},
"devDependencies": {
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"babel-preset-nano-react-app": "^0.1.0",
"sass": "^1.45.2",
"typescript": "^3.8.3",
"vite": "^2.6.7"
}
}
|