-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.84 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "sensor-manager",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "cross-env NODE_ENV=development vite --host",
"build": "tsc && cross-env NODE_ENV=production vite build",
"preview": "vite preview --host",
"barrels": "barrelsby --config .barrelsby.json",
"lint": "eslint '**/*.{tsx,ts,js}'",
"format": "prettier '**/*.{tsx,ts,js,json,md,yml,yaml}' --write",
"prepare": "is-ci || husky install",
"clean:git": "git branch --merged >/tmp/merged-branches && nano /tmp/merged-branches && xargs git branch -D </tmp/merged-branches && git fetch --prune --all"
},
"dependencies": {
"@babel/core": "^7.0.0-0",
"@heroicons/react": "^2.0.16",
"@monaco-editor/react": "^4.4.6",
"axios": "^1.3.4",
"flowbite": "^1.6.3",
"flowbite-react": "^0.3.8",
"moment": "^2.29.4",
"monaco-editor": "0.34.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.5",
"react-router-dom": "^6.8.1",
"react-toastify": "^9.1.1",
"zustand": "^4.3.3"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.52.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"barrelsby": "^2.5.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"lint-staged": "^13.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5",
"vite": "^4.1.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}