-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.97 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
{
"name": "spacex-project",
"version": "1.0.0",
"private": true,
"author": "Arthur Santos",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"format": "prettier --write src",
"up-latest": "yarn upgrade-interactive --latest",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install",
"test": "jest",
"precodegen": "apollo schema:download --endpoint=https://api.spacex.land/graphql/"
},
"dependencies": {
"@apollo/client": "^3.5.5",
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.7.1",
"@emotion/cache": "^11.6.0",
"@emotion/react": "^11.6.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@fontsource/moulpali": "^4.5.1",
"@fontsource/roboto": "^4.5.1",
"framer-motion": "^4.1.17",
"next": "^12.0.3",
"next-pwa": "^5.4.0",
"next-seo": "^4.28.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-waypoint": "^10.1.0",
"rerousel": "^0.1.9"
},
"devDependencies": {
"@babel/preset-react": "^7.16.0",
"@commitlint/config-conventional": "^14.1.0",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/graphql": "^14.5.0",
"@types/react": "^17.0.34",
"@types/rx": "^4.1.2",
"apollo": "^2.33.9",
"commitlint": "^14.1.0",
"cypress": "^9.1.0",
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.3",
"eslint-config-sznm": "^0.1.11",
"eslint-plugin-cypress": "^2.12.1",
"graphql": "^15.6.1",
"husky": "^7.0.4",
"jest": "^27.4.3",
"lint-staged": "^12.0.2",
"next-sitemap": "^1.6.203",
"prettier": "^2.4.1",
"standard-version": "^9.3.2",
"typescript": "^4.4.4"
}
}