-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.81 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "cse187-assignment3",
"version": "2.0.0",
"description": "CSE187 Assignment 3",
"author": "David Harrison <dcharris@ucsc.edu>",
"license": "UNLICENSED",
"repository": "none",
"scripts": {
"dev": "next dev",
"lint": "next lint --fix",
"test": "jest --runInBand --detectOpenHandles --forceExit",
"test:silent": "npm test -- --silent",
"test:watch": "npm test -- --watchAll",
"zip": "bestzip CSE187.Assignment3.Submission.zip test/**/* src/**/* sql/schema.sql sql/data.sql"
},
"dependencies": {
"@emotion/react": "*",
"@emotion/styled": "*",
"@mui/icons-material": "*",
"@mui/material": "*",
"class-validator": "*",
"graphql": "*",
"graphql-request": "*",
"graphql-yoga": "*",
"jsonwebtoken": "*",
"next": "*",
"pg": "*",
"react": "*",
"react-dom": "*",
"reflect-metadata": "*",
"type-graphql": "^2.0.0-beta.6"
},
"devDependencies": {
"@jest/globals": "*",
"@testing-library/jest-dom": "*",
"@testing-library/react": "*",
"@testing-library/user-event": "*",
"@types/glob": "*",
"@types/jest": "*",
"@types/jsonwebtoken": "*",
"@types/node": "*",
"@types/pg": "*",
"@types/react": "*",
"@types/react-dom": "*",
"@types/supertest": "*",
"bestzip": "*",
"dotenv": "*",
"eslint": "*",
"eslint-config-next": "*",
"eslint-config-typescript": "*",
"jest": "*",
"jest-environment-jsdom": "*",
"msw": "*",
"next-router-mock": "*",
"supertest": "*",
"ts-jest": "*",
"ts-node": "*",
"ts-postgres": "*",
"typescript": "*"
},
"eslintConfig": {
"extends": [
"next/core-web-vitals",
"typescript"
],
"parserOptions": {
"ecmaVersion": 14
},
"rules": {
"indent": [
"warn",
2
]
}
}
}