This repository has been archived by the owner on Jun 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
{
"name": "math-proof",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run prisma-gen && next build",
"start": "next start",
"lint": "next lint",
"prisma-push": "prisma db push",
"prisma-studio": "prisma studio",
"prisma-gen": "prisma generate",
"prisma-prep": "prisma db push && prisma generate",
"test": "jest",
"test:watch": "jest --watch",
"cypress": "cypress open",
"cypress-test": "start-server-and-test start http://localhost:3000 cypress",
"cypress:headless": "cypress run",
"e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless"
},
"dependencies": {
"@prisma/client": "^3.3.0",
"next": "^12.0.2",
"next-auth": "^4.0.0-next.26",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"start-server-and-test": "^1.14.0",
"swr": "^1.0.1",
"use-between": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/react": "^17.0.20",
"autoprefixer": "^10.3.4",
"babel-jest": "^27.3.1",
"cypress": "^9.1.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.2",
"eslint-plugin-cypress": "^2.12.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"postcss": "^8.3.9",
"prisma": "^3.3.0",
"react-latex-next": "^2.1.0",
"react-test-renderer": "^17.0.2",
"tailwindcss": "^2.2.16",
"typescript": "^4.4.3"
}
}