-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.19 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "nextjs-starter",
"version": "1.0.0",
"description": "NextJS build template with TypeScript support",
"author": "",
"license": "ISC",
"main": "index.js",
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"scripts": {
"dev": "next -p 3001",
"build": "next build",
"start": "next start",
"start:8080": "next start -p 8080",
"test": "jest --maxWorkers=2 --verbose",
"test:unit": "jest",
"tdd": "npm run test:unit -- --watch --coverage=false --verbose",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint ./src --fix --cache"
]
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@next/bundle-analyzer": "^12.1.4",
"@next/eslint-plugin-next": "^12.1.4",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/next-auth": "^3.15.0",
"@types/node": "^16.11.13",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"babel-jest": "^27.5.1",
"eslint": "^7.32.0",
"eslint-config-next": "^12.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-testing-library": "^5.2.1",
"growl": "^1.10.5",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jest-cli": "^27.5.1",
"jest-css-modules-transform": "^4.3.0",
"jest-fetch-mock": "^3.0.3",
"jest-next-dynamic": "^1.0.1",
"jest-styled-components": "^7.0.8",
"jest-watch-typeahead": "^1.0.0",
"jwt-decode": "^3.1.2",
"lint-staged": "^12.3.7",
"next-compose-plugins": "^2.2.1",
"next-svgr": "^0.0.2",
"prettier": "^2.6.2",
"prettier-eslint": "^8.2.2",
"react-redux": "^7.2.8",
"react-test-renderer": "^17.0.2",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4",
"redux-saga-test-plan": "^4.0.4",
"ts-jest": "^27.1.4",
"typescript": "4.6"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.1",
"@sentry/integrations": "^6.19.4",
"@sentry/react": "^6.19.4",
"@sentry/tracing": "^6.19.4",
"jsdom": "^19.0.0",
"next": "^12.1.4",
"next-auth": "^4.3.1",
"next-redux-wrapper": "^7.0.5",
"next-transpile-modules": "^9.0.0",
"normalize.css": "^8.0.1",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"redux": "^4.1.2",
"styled-components": "^5.3.5"
}
}