-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"serve": "next build && next start",
"test": "jest --watchAll=false",
"test:coverage": "npm test -- --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges"
},
"devDependencies": {
"@emotion/babel-plugin": "11.0.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/react": "^17.0.38",
"babel-jest": "^27.4.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"react-test-renderer": "^17.0.2",
"typescript": "^4.5.4"
},
"dependencies": {
"@apollo/client": "^3.5.6",
"@chakra-ui/react": "^1.7.4",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"cross-fetch": "^3.1.4",
"framer-motion": "^5.5.6",
"graphql": "^16.2.0",
"jest-coverage-badges": "^1.1.2",
"next": "latest",
"next-pwa": "^5.4.4",
"nextjs-progressbar": "^0.0.13",
"pokeapi-typescript": "^2.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}