-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.81 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.81 KB
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
{
"name": "base-project-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"format": "npx prettier --config=prettier.config.js \"**/*.{js,jsx,ts,tsx,md,html,css,scss,json,yml}\" --write || true",
"lint": "npm run format && npm run lint:js && npm run lint:css",
"lint:css": "npx stylelint \"**/*.{css,scss}\" --config=stylelint.config.js || true",
"lint:js": "npx eslint \"**/*.{js,jsx,ts,tsx}\" --config=.eslintrc.js || true"
},
"dependencies": {
"@apollo/client": "^3.3.19",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-prismic": "^1.0.9",
"babel-plugin-styled-components": "^1.12.0",
"embla-carousel-react": "^5.0.1",
"framer-motion": "^4.1.17",
"graphql": "^15.6.1",
"graphql-tag": "^2.12.5",
"html-react-parser": "^1.2.6",
"js-cookie": "^3.0.1",
"lodash": "^4.17.21",
"next": "^13.4.19",
"next-seo": "^4.24.0",
"next-sitemap": "^2.0.5",
"prismic-reactjs": "^1.3.4",
"react": "^18",
"react-dom": "^18",
"react-intersection-observer": "^8.32.1",
"react-player": "^2.9.0",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@next/bundle-analyzer": "^10.2.3",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^35.1.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^8.3.0",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.0",
"react-is": "^17.0.2",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0"
}
}