forked from nocode-js/nocode-platform-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "nocode-api-builder-template",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --check ./src",
"prettier:fix": "prettier --write ./src"
},
"dependencies": {
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-config-next": "^13.4.7",
"next": "15.0.3",
"postcss": "8.4.24",
"react": "18.3.1",
"react-dom": "18.3.1",
"sequential-workflow-designer": "^0.27.0",
"sequential-workflow-designer-react": "^0.27.0",
"sequential-workflow-editor": "^0.14.4",
"sequential-workflow-editor-model": "^0.14.4",
"sequential-workflow-model": "^0.2.0",
"sequential-workflow-machine": "^0.7.1",
"tailwindcss": "^3.4.15",
"typescript": "5.4.5",
"uuid": "^11.0.3",
"mongodb": "^5.6.0"
},
"devDependencies": {
"prettier": "^3.3.3",
"@types/uuid": "^9.0.4"
}
}