-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 955 Bytes
/
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": "practical-next-auth-solution",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src",
"test": "jest",
"gradescope": "zip gradescope.zip setup.sh run_autograder src/__tests__/grading.test.js"
},
"dependencies": {
"next": "10.0.1",
"next-auth": "^3.1.0",
"next-connect": "^0.9.1",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.2",
"babel-jest": "^26.6.3",
"eslint": "^7.13.0",
"eslint-plugin-react": "^7.21.5",
"fetch-mock-jest": "^1.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"supertest": "^6.0.1"
},
"jest": {
"setupFilesAfterEnv": [
"@testing-library/jest-dom"
],
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
}
}
}