-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "recipe-app",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@apollo/client": "^3.5.8",
"@sentry/nextjs": "^6.17.1",
"enzyme": "^3.11.0",
"graphql": "^16.2.0",
"next": "^10.0.1",
"next-redux-wrapper": "^6.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.1",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.12",
"@types/node-fetch": "^2.5.2",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"@types/styled-components": "^5.1.21",
"axios": "^0.25.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.2",
"eslint": "8.7.0",
"eslint-config-next": "^0.2.4",
"jest": "^27.4.7",
"react-test-renderer": "^16.10.2",
"ts-jest": "^27.1.3",
"typescript": "4.5.5"
}
}