-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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
{
"name": "control_center",
"version": "1.0.0",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": "https://github.com/Londelo/control_center.git",
"author": "londelo",
"license": "MIT",
"scripts": {
"dev": "next dev",
"start": "npm run build && next start -p 8080",
"build": "next build",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest --watch",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@types/node": "^24.3.1",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"dexie": "^4.2.1",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"lucide-react": "^0.544.0",
"next": "^14.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.13",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.13"
}
}