-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 981 Bytes
/
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
{
"name": "HAR",
"version": "1.0.0",
"description": "Human Activity Recognition (HAR) System",
"main": "src/main.tsx",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write ."
},
"keywords": ["har", "human activity recognition", "ontology", "probabilistic reasoning"],
"author": "Matthew Cochran",
"license": "MIT",
"dependencies": {
"@heroicons/react": "^1.0.6",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"axios": "^0.21.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.0.0",
"tailwindcss": "^2.2.19",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^10.4.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.26.1",
"postcss": "^8.3.11",
"vite": "^2.6.14"
}
}