-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.35 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
{
"private": true,
"scripts": {
"heroku-postbuild": "yarn workspaces run build",
"build": "yarn workspaces run tsc",
"tsc": "yarn workspaces run tsc",
"frontend-dev": "yarn workspace frontend start",
"backend-dev": "yarn workspace backend dev",
"frontend-prod": "yarn workspace frontend start-prod",
"backend-prod": "yarn workspace backend prod",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"format": "prettier --write **/*.{ts,js,tsx,jsx,scss,css,html}",
"format:check": "prettier --check **/*.{ts,js,tsx,jsx,scss,css,html}",
"start": "run-p frontend-dev backend-dev",
"start-prod": "run-p frontend-prod backend-prod",
"prepare": "husky install",
"test": "yarn workspace backend test"
},
"workspaces": [
"frontend",
"backend"
],
"devDependencies": {
"@babel/preset-typescript": "^7.13.0",
"@firebase/testing": "^0.20.11",
"@types/googlemaps": "^3.43.3",
"@types/nodemailer": "^6.4.14",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-jest": "^26.6.3",
"eslint": "^7.20.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"git-format-staged": "^2.1.1",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"ts-jest": "^26.5.3"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "lf",
"proseWrap": "always"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,js,tsx,jsx,scss,css,html}": [
"prettier --write"
],
"./frontend/**/*.{ts,js,tsx,jsx}": [
"yarn workspace frontend lint:fix"
],
"./backend/**/*.{ts,js,tsx,jsx}": [
"yarn workspace backend lint:fix"
]
},
"engines": {
"node": "16.x"
},
"dependencies": {
"bad-words": "^3.0.4",
"env-cmd": "^10.1.0",
"google-map-react": "^2.2.1",
"nodemailer": "^6.9.13",
"react-google-charts": "^4.0.1",
"react-infinite-scroll-component": "^6.1.0"
}
}