forked from MileTwo/nextjs-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.1 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
{
"name": "nextjs-typescript-material-ui-eslint-jest",
"version": "1.0.1",
"private": true,
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^4.12.3",
"@mui/material": "^5.0.6",
"@mui/styles": "^5.0.2",
"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": "concurrently \"next dev\" \"npm run type-check:watch\"",
"format": "prettier --write . && eslint --fix .",
"lint": "eslint .",
"start": "next start",
"test": "jest",
"type-check": "tsc",
"type-check:watch": "tsc --watch --preserveWatchOutput",
"quality": "npm run type-check && npm run lint && npm run test",
"prepare": "husky install"
},
"devDependencies": {
"@axe-core/react": "^4.3.1",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/plugin-transform-typescript": "^7.16.1",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@testing-library/dom": "^8.11.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@types/node": "^16.11.6",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.3.1",
"concurrently": "^6.4.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}