-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.18 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
{
"name": "with-jest",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"lint-eslint": "eslint . --ext js,jsx --max-warnings=0",
"lint": "yarn prettier-check && yarn lint-eslint",
"lint-fix": "yarn prettier-fix && yarn lint-eslint . --ext js,jsx --fix --max-warnings=0",
"prettier-check": "prettier --check \"**/*.{jsx,js,css}\"",
"prettier-fix": "prettier --write \"**/*.{jsx,js,css}\""
},
"dependencies": {
"@testing-library/jest-dom": "^5.1.0",
"next": "latest",
"prop-types": "^15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0"
},
"devDependencies": {
"@testing-library/react": "^9.4.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^25.1.0",
"react-test-renderer": "^16.12.0"
}
}