forked from idealo/idealo.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.42 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
{
"private": true,
"name": "idealo-github-landing-page",
"scripts": {
"dev": "next dev",
"lint": "next lint",
"build": "next build",
"start": "next start",
"format:check": "npx prettier --check .",
"format:fix": "npx prettier --write .",
"test": "jest --watch",
"test:ci": "jest --ci",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"cheerio": "^1.0.0-rc.10",
"eslint-plugin-jest": "^24.4.0",
"next": "latest",
"node-fetch": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.39.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^11.1.2",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.0.0",
"@testing-library/user-event": "13.2.1",
"babel-jest": "27.0.6",
"eslint": "7.32.0",
"eslint-config-next": "latest",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-testing-library": "4.11.0",
"husky": "^7.0.0",
"identity-obj-proxy": "3.0.0",
"jest": "27.0.6",
"lint-staged": "11.1.2",
"prettier": "2.4.0",
"pretty-quick": "^3.1.1",
"react-test-renderer": "17.0.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}