-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "simple-nextjs-quick-start",
"version": "1.0.0",
"description": "Nextjs quick start",
"scripts": {
"test": "jest --passWithNoTests",
"lint": "eslint src",
"dev": "next",
"build": "next build",
"start": "next start",
"deploy": "yarn build && next export",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json)\""
},
"author": "Guilherme Louro",
"license": "MIT",
"devDependencies": {
"@testing-library/react": "^10.0.4",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.36",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"jest": "^26.0.1",
"jest-styled-components": "^7.0.2",
"prettier": "^2.0.5",
"typescript": "^3.9.5"
},
"dependencies": {
"graphql": "^15.4.0",
"graphql-request": "^3.3.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"next": "^9.4.4",
"next-compose-plugins": "^2.2.0",
"next-optimized-images": "^2.6.1",
"next-seo": "^4.5.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0",
"react-mailchimp-subscribe": "^2.1.0",
"react-slick": "^0.26.1",
"resize-observer-polyfill": "^1.5.1",
"styled-components": "^5.1.1",
"styled-media-query": "^2.1.2",
"webp-loader": "^0.6.0"
}
}