-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
136 lines (136 loc) · 3.5 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "dashboard",
"version": "1.1.1",
"private": true,
"scripts": {
"dev": "next dev -p 3030",
"build": "next build",
"build:start": "next build && next start -p 3030",
"start": "next start -p 3030",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --write .",
"prepare": "husky || true"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.1.9",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/language": "^6.8.0",
"@codemirror/legacy-modes": "^6.3.2",
"@emergentmethods/flowdapt-ts-sdk": "^1.0.7",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.1.0",
"@tremor/react": "^3.4.1",
"@types/node": "18.15.11",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@uiw/codemirror-theme-github": "^4.21.7",
"@uiw/codemirror-theme-vscode": "^4.21.7",
"@uiw/react-codemirror": "^4.21.7",
"autoprefixer": "10.4.14",
"dagre": "^0.8.5",
"daisyui": "^3.1.11",
"eslint-config-next": "^13.4.9",
"fuse.js": "^6.6.2",
"heroicons": "^2.0.18",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"next": "^14.2.3",
"next-themes": "^0.2.1",
"postcss": "^8.4.22",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"reactflow": "^11.7.2",
"server-only": "^0.0.1",
"sharp": "^0.32.0",
"tailwindcss": "^3.3.2",
"uuid": "^9.0.0",
"yup": "^1.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@playwright/test": "^1.32.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/dagre": "^0.7.48",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.17.6",
"@types/lodash-es": "^4.17.7",
"@types/react-table": "^7.7.14",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^46.0.0",
"husky": "^9.0.11",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.1",
"msw": "^1.2.2",
"prettier": "^2.8.7",
"start-server-and-test": "^2.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"msw": {
"workerDirectory": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"always",
"sentence-case"
]
}
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/github",
{
"assets": [
"CHANGELOG.md"
]
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): Release ${nextRelease.version}"
}
]
]
}
}