-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.81 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
{
"name": "2021",
"version": "0.1.0",
"private": true,
"scripts": {
"generate-image-sizes": "node generate-sizes.js",
"dev": "yarn generate-image-sizes && next dev",
"build": "yarn generate-image-sizes && yarn lint && next build",
"build-static": "yarn build && next export",
"start": "next start",
"lint": "eslint . --ext ts,tsx --max-warnings 0 && tsc",
"test": "jest --passWithNoTests"
},
"husky": {
"hooks": {
"pre-push": "yarn test",
"pre-commit": "yarn lint"
}
},
"dependencies": {
"framer-motion": "^3.10.0",
"next": "^10.0.7",
"polished": "^4.0.5",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-intersection-observer": "^8.31.0",
"styled-breakpoints": "^9.0.8",
"styled-components": "^5.2.1",
"styled-normalize": "^8.0.7"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.ts",
"jest-axe/extend-expect"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.19",
"@types/jest-axe": "^3.5.1",
"@types/node": "^14.14.19",
"@types/react": "^17.0.0",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-jest": "^26.6.3",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"glob": "^7.1.6",
"husky": "^4.3.6",
"image-size": "^0.9.4",
"jest": "^26.6.3",
"jest-axe": "^4.1.0",
"jest-styled-components": "^7.0.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}