-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1001 Bytes
/
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
{
"name": "naruto-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@types/lodash.debounce": "^4.0.6",
"@types/react-paginate": "^7.1.1",
"@types/react-toastify": "^4.1.0",
"@types/styled-components": "^5.1.24",
"eslint-plugin-import-helpers": "^1.2.1",
"graphql": "^16.3.0",
"lodash.debounce": "^4.0.8",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-paginate": "^8.1.3",
"react-toastify": "^8.2.0",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@testing-library/react": "^13.2.0",
"@types/jest": "^27.5.0",
"@types/node": "17.0.21",
"@types/react": "17.0.40",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"jest": "^28.1.0",
"typescript": "4.6.2"
}
}