-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.36 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "hoit-er-front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 4000",
"build": "next build",
"start": "next start -p 4000",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage",
"docker:build": "docker build -t er-front .",
"docker:start": "docker run -p 4000:4000 er-front",
"docker:build:test": "docker build -t er-front:test . -f dockerfile.test",
"docker:test": "docker run er-front:test",
"docker:build:local": "docker build -t er-front:local . -f dockerfile.local",
"docker:local": "docker run -p 4000:4000 er-front:local",
"docker:stop": "docker stop $(docker ps -a -q)",
"docker:clean": "docker system prune -f > /dev/null 2>&1",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@types/node": "20.4.4",
"@types/react": "18.2.16",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"framer-motion": "^10.13.1",
"hoit-server-api": "^0.0.2",
"lucide-react": "^0.263.1",
"next": "^13.4.12",
"next-themes": "^0.2.1",
"postcss": "8.4.27",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "18.2.0",
"react-grid-layout": "^1.3.4",
"socket.io-client": "^4.7.2",
"swr": "^2.2.4",
"tailwindcss": "3.3.3",
"typescript": "5.1.6",
"ulid": "^2.3.0",
"zustand": "^4.4.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.4",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-grid-layout": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest-dom": "^5.0.2",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-testing-library": "^6.0.1",
"husky": "^8.0.0",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.4.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
}
}