-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.58 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
{
"name": "find_rentals",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.17",
"@google-cloud/firestore": "^5.0.0",
"@sentry/react": "^6.17.6",
"@sentry/tracing": "^6.18.1",
"@vercel/node": "^1.12.1",
"axios": "^0.25.0",
"cheerio": "^1.0.0-rc.12",
"chrono-node": "^2.7.0",
"date-fns": "^2.30.0",
"google-spreadsheet": "^3.2.0",
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-bulma-components": "4.1.0",
"react-dom": "^17.0.2",
"react-responsive": "^8.2.0",
"react-scripts": "5.0.1",
"react-table": "^7.7.0",
"swr": "^1.2.1",
"typescript": "^4.5.5",
"uuid": "^8.3.2",
"web-vitals": "^2.0.0",
"winston": "^3.5.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --transformIgnorePatterns \"node_modules/(?!react-bulma-components)/\"",
"gettoken": "node --loader ts-node/esm getToken.ts",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@pollyjs/adapter-xhr": "^6.0.0",
"@pollyjs/core": "^6.0.4",
"@pollyjs/persister-fs": "^6.0.0",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.5.0",
"@types/google-spreadsheet": "^3.1.5",
"@types/inquirer": "^8.0.0",
"@types/jest": "^27.0.0",
"@types/lodash": "^4.14.178",
"@types/node": "^18.14.6",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-responsive": "^8.0.5",
"@types/react-table": "^7.7.9",
"@types/uuid": "^8.3.4",
"husky": "^7.0.0",
"inquirer": "^8.2.0",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"xdg-app-paths": "5.1.0"
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.{js,css,md,ts,tsx,json,scss,sass}": "prettier --write"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}