-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.63 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
57
58
59
60
61
62
63
{
"name": "nextjs-with-pages-mui-starter-ts",
"version": "0.5.25",
"description": "Starter project for Next.js with Pages Router + MUI starter using TypeScript",
"author": {
"name": "Anton Karpenko",
"email": "i@karpolan.com",
"url": "https://karpolan.com"
},
"private": true,
"keywords": [
"nextjs",
"react",
"typescript",
"mui",
"material",
"material ui"
],
"repository": {
"type": "git",
"url": "https://github.com/karpolan/nextjs-with-pages-mui-starter-ts.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:static": "next build && next export",
"format": "prettier ./ --write",
"lint": "next lint",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"type": "tsc"
},
"dependencies": {
"@emotion/cache": "latest",
"@emotion/react": "latest",
"@emotion/server": "latest",
"@emotion/styled": "latest",
"@mui/icons-material": "latest",
"@mui/material": "latest",
"clsx": "latest",
"copy-to-clipboard": "latest",
"next": "latest",
"react": "latest",
"react-dom": "latest"
},
"devDependencies": {
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@testing-library/user-event": "latest",
"@types/node": "latest",
"@types/react": "latest",
"babel-jest": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"eslint-plugin-testing-library": "latest",
"jest": "latest",
"jest-environment-jsdom": "latest",
"next-router-mock": "latest",
"prettier": "latest",
"typescript": "latest"
}
}