-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.92 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "recoded-capstone-project",
"version": "0.1.0",
"main": "index.js",
"private": true,
"dependencies": {
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@firebase/rules-unit-testing": "^2.0.2",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"autoprefixer": "^9.8.6",
"bootstrap": "^5.0.0-beta3",
"cookie-cutter": "^0.2.0",
"core-js": "^3.16.1",
"firebase": "^9.6.6",
"i18next": "^19.8.3",
"i18next-browser-languagedetector": "^6.1.2",
"i18next-http-backend": "^1.0.21",
"js-search": "^2.0.0",
"next": "^12.0.10",
"next-i18next": "^8.5.1",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-bootstrap": "^1.6.1",
"react-dom": "^16.14.0",
"react-firebase-hooks": "^3.0.4",
"react-firebaseui": "^6.0.0",
"react-icons": "^4.2.0",
"react-markdown": "^6.0.3",
"react-paginate": "^7.1.3",
"react-rating": "^2.0.5",
"react-router-dom": "^5.2.0",
"react-slick": "^0.28.1",
"react-spring": "^9.4.2",
"regenerator-runtime": "^0.13.9",
"sass": "^1.35.2",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --env=node",
"test:coverage": "yarn test -- --coverage --watchAll=false ",
"eject": "yarn react-scripts eject",
"format": "eslint . --ext .js,.jsx --fix",
"jest:watch": "jest --watch"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"babel-plugin-styled-components": "^1.13.1",
"concurrently": "^5.3.0",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.0",
"jest": "^26.6.0",
"lint-staged": "^10.4.2",
"prettier": "^2.5.1",
"react-test-renderer": "^16.14.0"
},
"jest": {
"moduleDirectories": [
"node_modules",
"src"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.{js,jsx,css}": [
"prettier --write",
"eslint --fix"
]
}
}