-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "fhit-app",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"check": "npm run test && npm run lint && npm run prettier && npm run build",
"dev": "next dev",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --check \"**/*.{js,ts,tsx}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts,tsx}\"",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch"
},
"contributors": [
"Julia Afeltra <jafeltra@mitre.org>",
"Chris Moesel <cmoesel@mitre.org>",
"Mint Thompson <mathompson@mitre.org>",
"Julian Carter <jacarter@mitre.org>",
"Guhan Thuran <gthuran@mitre.org"
],
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/material": "^5.10.8",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "18.8.1",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"prettier": "^2.7.1",
"typescript": "4.8.4"
}
}