-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "hacking-vigilance",
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test:watch": "jest --watch --detectOpenHandles",
"test": "jest --watchAll=false",
"test:ci": "jest --coverage --watchAll=false --testResultsProcessor ./node_modules/jest-sonar-reporter --passWithNoTests"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.6.6",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@fontsource/space-mono": "^4.5.0",
"framer-motion": "^4.1.17",
"next": "^12.0.4",
"next-i18next": "^9.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0"
},
"devDependencies": {
"@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-react-app": "^6.0.0",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-testing-library": "^4.10.1",
"husky": "^7.0.1",
"jest": "^27.0.6",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:jest-dom/recommended"
],
"plugins": [
"testing-library",
"jest-dom"
]
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}