This repository has been archived by the owner on Oct 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·56 lines (56 loc) · 1.89 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
55
56
{
"name": "nextjs-typescript-material-ui-eslint-jest",
"version": "1.0.1",
"private": true,
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^4.12.3",
"@mui/material": "^5.0.1",
"@mui/styles": "^5.0.1",
"jest-esm-transformer": "^1.0.0",
"next": "^11.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"build": "next build",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev": "next",
"format": "prettier --write . && eslint --fix .",
"lint": "eslint .",
"start": "next start",
"test": "jest",
"type-check": "tsc",
"quality": "npm run type-check && npm run lint && npm run test"
},
"devDependencies": {
"@axe-core/react": "^4.3.1",
"@babel/core": "^7.15.8",
"@babel/node": "^7.15.8",
"@babel/plugin-transform-typescript": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@testing-library/dom": "^8.7.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/node": "^16.10.3",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.2.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.5",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}