-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 2.14 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
{
"name": "nextjs-starter",
"version": "2.0.0",
"description": "Next.js starter app",
"author": "Hugo Pineda <[email protected]>",
"license": "UNLICENSED",
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3001",
"lint": "eslint \"**/*.{md,mjs,js,jsx,ts,tsx}\" --cache",
"test": "jest"
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.1",
"@rtk-incubator/rtk-query": "^0.3.0",
"bcryptjs": "^2.4.3",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"next": "^10.2.0",
"next-redux-wrapper": "^6.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@types/bcryptjs": "^2.4.2",
"@types/js-cookie": "^2.2.6",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^15.3.0",
"@types/react": "^17.0.5",
"@types/react-redux": "^7.1.16",
"@types/redux-mock-store": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-jsdoc": "^34.6.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-markdown": "^2.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-testing-library": "^4.4.0",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"redux-mock-store": "^1.5.4",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.4"
}
}