-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.91 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
{
"name": "kanban-board",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"dev:test": "NODE_ENV=test npm run dev",
"build": "next build",
"db:keyspace:create": "tsx src/scripts/createKeyspace.ts",
"db:keyspace:create-test": "NODE_ENV=test npm run db:keyspace:create",
"db:migrate": "cassandra-migration migrations/config.json",
"db:migrate-test": "cassandra-migration migrations/config-test.json",
"db:seed": "tsx src/scripts/seed.ts",
"db:clear": "tsx src/scripts/clear.ts",
"cy:open": "NODE_ENV=test cypress open",
"cy:run": "NODE_ENV=test cypress run",
"start": "next start",
"test": "jest",
"test:e2e": "npm run cy:run",
"lint": "next lint"
},
"dependencies": {
"@heroicons/react": "^2.1.1",
"@simplewebauthn/browser": "^10.0.0",
"@simplewebauthn/server": "^10.0.1",
"bulma": "^1.0.1",
"cassandra-driver": "^4.6.4",
"cassandra-migration": "^3.0.0",
"clsx": "^2.0.0",
"encoding": "^0.1.13",
"immer": "^10.0.2",
"kerberos": "^2.0.3",
"next": "^14.0.1",
"original-fs": "^1.2.0",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"sass": "^1.69.5",
"uuid": "^10.0.0",
"zustand": "^4.4.0"
},
"devDependencies": {
"@simplewebauthn/types": "^10.0.0",
"@testing-library/jest-dom": "^6.0.1",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.3",
"@types/node": "^22.5.1",
"@types/react": "^18.2.16",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^10.0.0",
"cypress": "^13.3.3",
"eslint": "<9",
"eslint-config-next": "^14.0.1",
"eslint-config-prettier": "^9.0.0",
"jest-environment-jsdom": "^29.6.3",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"tsx": "^4.0.0",
"typescript": "^5.1.6"
}
}