-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.79 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
{
"name": "with-styled-components",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"export": "next build && next export",
"start": "next start",
"lint": "eslint --ignore-path .gitignore .",
"commit": "cz",
"test": "jest",
"test:watch": "jest --watch",
"test:integration:open": "cypress open",
"test:integration": "cypress run --headless"
},
"dependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@crello/react-lottie": "^0.0.11",
"@types/jest": "^26.0.22",
"cypress": "^6.8.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-jest": "^24.3.2",
"framer-motion": "^3.7.0",
"jest": "^26.6.3",
"lodash": "^4.17.20",
"next": "latest",
"nookies": "^2.5.2",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.8.0",
"react-is": "^17.0.2",
"shelljs": "^0.8.4",
"styled-components": "^5.0.0",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.5",
"babel-plugin-styled-components": "^1.8.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"jest-canvas-mock": "^2.3.1",
"jest-styled-components": "^7.0.3",
"react-test-renderer": "^16.9.0"
},
"husky": {
"hooks": {
"pre-push": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}