-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "mikado-method",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"unit": "jest --maxWorkers=50%",
"integration": "jest --maxWorkers=50% --testMatch '**/*.integration.ts' --testEnvironment node --setupFilesAfterEnv",
"tsc": "npx tsc",
"setup": "husky install",
"tests": "run-p tsc lint unit integration"
},
"dependencies": {
"@dagrejs/dagre": "^1.0.4",
"@sentry/nextjs": "^7.74.1",
"@supabase/supabase-js": "^2.38.4",
"@vercel/analytics": "^1.0.1",
"intl-messageformat": "^10.5.0",
"next": "13.4.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intl": "^6.4.4",
"react-toastify": "^9.1.3",
"reactflow": "^11.8.3",
"type-fest": "^4.4.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@jest/globals": "^29.6.1",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.2",
"@types/node": "20.3.3",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@types/testing-library__jest-dom": "^5.14.8",
"@types/uuid": "^9.0.2",
"dotenv": "^16.3.1",
"eslint": "8.44.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.4.8",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.0",
"jest-mock": "^29.7.0",
"npm-run-all": "^4.1.5",
"typescript": "5.1.6"
},
"volta": {
"node": "18.16.1"
}
}