generated from jhackett1/railsy-nextjs-prisma-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "sms-message-tool",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "next",
"build": "prisma generate && next build",
"start": "next start -p $PORT",
"test": "jest",
"typecheck": "tsc",
"cypress": "cypress open",
"db:schema:load": "prisma db push --preview-feature",
"db:seed": "prisma db seed --preview-feature"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@prisma/client": "^2.20.1",
"@reach/dialog": "^0.13.2",
"@testing-library/user-event": "^13.1.5",
"formik": "^2.2.6",
"lbh-frontend": "^3.5.2",
"libphonenumber-js": "^1.9.15",
"luxon": "^1.26.0",
"next": "^10.0.9",
"next-auth": "^3.13.2",
"notifications-node-client": "^5.1.0",
"prisma": "^2.20.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sass": "^1.32.8",
"swr": "^0.5.4",
"yup": "^0.32.9",
"yup-phone": "^1.2.19"
},
"devDependencies": {
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.22",
"@types/next-auth": "^3.13.0",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"cypress": "^6.8.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"typescript": "^4.2.3"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
}
}
}