-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.77 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "tabula-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -H dev.tabulalms.com",
"dev:local": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"dev:server": "ts-node --esm ./server/index.ts",
"build:server": "tsc ./server --outDir ./server/dist",
"start:server": "node ./server/dist/index.js",
"test": "jest"
},
"dependencies": {
"@editorjs/attaches": "^1.3.0",
"@editorjs/checklist": "^1.5.0",
"@editorjs/editorjs": "^2.28.2",
"@editorjs/header": "^2.7.0",
"@editorjs/simple-image": "^1.5.1",
"@prisma/client": "^5.5.0",
"flowbite": "^1.8.1",
"flowbite-react": "^0.6.4",
"formik": "^2.4.5",
"lodash": "^4.17.21",
"next": "13.5.6",
"next-auth": "^4.24.4",
"prisma": "^5.5.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.8",
"@types/lodash": "^4.14.200",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"autoprefixer": "^10.4.15",
"babel-jest": "^29.7.0",
"eslint": "8.45.0",
"eslint-config-next": "13.4.10",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.29",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "5.1.6"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}