This repository has been archived by the owner on Jul 1, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.35 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nextjs-boilerplate-faunadb-elasticsearch",
"version": "1.0.0",
"author": "Bruno Bernardino <me@brunobernardino.com>",
"license": "UNLICENSED",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/BrunoBernardino/nextjs-boilerplate-faunadb-elasticsearch.git"
},
"engines": {
"node": "12.x"
},
"scripts": {
"test": "jest --testTimeout=5000",
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "tsc --noEmit && eslint --ext .js,.jsx,.ts,.tsx .",
"pretty": "prettier --write '*.{js,jsx,ts,tsx,json,scss}' '**/*.{js,jsx,ts,tsx,json,scss}'",
"pretty/test": "prettier --check '*.{js,jsx,ts,tsx,json,scss}' '**/*.{js,jsx,ts,tsx,json,scss}'"
},
"dependencies": {
"@apollo/client": "3.3.6",
"@elastic/elasticsearch": "7.10.0",
"@types/node": "14.14.16",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/styled-components": "5.1.7",
"@zeit/next-sass": "1.0.1",
"cross-fetch": "3.1.5",
"dotenv": "8.2.0",
"globby": "11.0.1",
"graphql": "15.4.0",
"ky": "0.25.1",
"ky-universal": "0.8.2",
"lodash": "4.17.21",
"next": "10.0.4",
"node-sass": "5.0.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-helmet": "6.1.0",
"react-show": "3.0.4",
"react-use": "15.3.4",
"sitemap": "6.3.5",
"styled-components": "5.2.1",
"typescript": "4.1.3"
},
"devDependencies": {
"@types/enzyme": "3.10.8",
"@types/jest": "26.0.19",
"@types/lodash": "4.14.166",
"@types/react-helmet": "6.1.0",
"@typescript-eslint/eslint-plugin": "4.11.1",
"@typescript-eslint/parser": "4.11.1",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-plugin-styled-components": "1.12.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.5",
"eslint": "7.16.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.0",
"eslint-plugin-react": "7.22.0",
"expect": "26.6.2",
"expect-enzyme": "1.3.0",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "17.0.1"
}
}