-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.54 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"export": "next build && next export",
"start": "next start",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "yarn lint --fix",
"custom-script": "node ./script-test.js",
"prepare": "husky install",
"commit": "cz",
"lint-staged": "lint-staged",
"test": "jest",
"test:watch": "jest --watch",
"test:integration:open": "cypress open",
"test:integration": "cypress run --headless",
"test:integration:build": "start-server-and-test build/start http-get://localhost:3000 test:integration",
"build/start": "yarn build && yarn start"
},
"dependencies": {
"@crello/react-lottie": "^0.0.11",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.3",
"commitizen": "^4.2.4",
"cypress-localstorage-commands": "^1.6.1",
"eslint-plugin-jest": "^24.5.0",
"flickity": "^2.2.2",
"framer-motion": "^4.1.17",
"graphql": "^15.6.0",
"graphql-request": "^3.5.0",
"init": "^0.1.2",
"jest": "^27.4.7",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"next": "latest",
"nookies": "^2.5.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-flickity-component": "^3.6.2",
"react-is": "^17.0.2",
"styled-components": "^5.3.3",
"styled-normalize": "^8.0.7",
"yup": "^0.32.11"
},
"lint-staged": {
"*.js": [
"yarn lint:fix"
]
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^13.2.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.2",
"babel-plugin-styled-components": "^2.0.2",
"cypress": "^8.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^12.0.10",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest-canvas-mock": "^2.3.1",
"jest-styled-components": "^7.0.5",
"lint-staged": "^12.1.2",
"shelljs": "^0.8.5",
"start-server-and-test": "^1.14.0"
},
"husky": {
"hooks": {
"pre-push": "yarn lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}