-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.61 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
79
80
81
82
83
84
85
86
87
88
{
"name": "with-styled-components",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"export": "next build & next export",
"start": "next start",
"commit": "cz",
"lint": "eslint --ignore-path .gitignore .",
"custom-script": "node ./script-test.js",
"test:integration:open": "cypress open",
"test:integration": "cypress run --headless",
"test": "jest --env=jsdom",
"test:watch": "jest --watch --env=jsdom",
"test:integration:build": "start-server-and-test build/start https://insta-alura-git-main-maxmillianox.vercel.app/ test:integration",
"build/start": "yarn build && yarn start",
"prepare": "husky install"
},
"dependencies": {
"@crello/react-lottie": "^0.0.11",
"@hookform/resolvers": "^2.4.0",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"axios": "^0.24.0",
"datocms-client": "^3.4.9",
"framer-motion": "^5.4.5",
"graphql": "^16.1.0",
"graphql-request": "^3.4.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"next": "^12.0.7",
"nookies": "^2.5.2",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^7.3.5",
"react-is": "^17.0.1",
"react-responsive-carousel": "^3.2.18",
"styled-components": "^5.0.0",
"styled-normalize": "^8.0.7",
"yup": "^0.32.9"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@testing-library/user-event": "^13.1.3",
"@types/jest": "^27.0.3",
"@types/jsonwebtoken": "^8.5.1",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.1",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-plugin-styled-components": "^2.0.2",
"commitizen": "^4.2.3",
"cypress": "^9.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.27.1",
"husky": "^7.0.0",
"init": "0.1.2",
"jest": "^27.0.6",
"jest-canvas-mock": "^2.3.1",
"jest-fetch-mock": "^3.0.3",
"jest-styled-components": "^7.0.3",
"prettier": "2.2.1",
"react-test-renderer": "^17.0.2",
"shelljs": "^0.8.4",
"start-server-and-test": "^1.12.2",
"typescript": "^4.1.4"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}