-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "unios-technical-exercise",
"version": "1.0.0",
"author": {
"name": "Unios Digital Products",
"email": "devops@unios.com"
},
"license": "UNLICENSED",
"private": true,
"prisma": {
"schema": "db/schema.prisma",
"seed": "node db/seed.js"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@prisma/client": "3.14.0",
"@emotion/react": "^11.9.0",
"@mdx-js/react": "^1",
"next": "^12.1.6",
"prisma": "^3.14.0",
"next-transpile-modules": "^9.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"theme-ui": "^0.14.5"
},
"devDependencies": {
"@types/node": "^17.0.31",
"@types/react": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-plugin-react": "^7.29.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}