-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.55 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
{
"private": true,
"version": "0.1.0",
"name": "lre-up",
"description": "LRE Water Unified Platform Monorepo",
"license": "MIT",
"author": {
"name": "Doug Kulak + Michael Barry",
"email": "dougkulak@gmail.com + michael.barry.email@gmail.com"
},
"workspaces": [
"packages/*"
],
"scripts": {
"start": "run-p start:backend start:frontend",
"start:frontend": "cd packages/frontend && npm start",
"start:backend": "cd packages/backend && npm run dev",
"bootstrap": "lerna bootstrap",
"commit": "cz",
"lint": "eslint --cache \"**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "yarn lint --fix",
"cli": "lre-up-cli",
"prepare": "husky install",
"add:model": "cd packages/backend && npm run add:model",
"add:page": "cd packages/backend && npm run add:page",
"lint-staged": "lint-staged --allow-empty",
"importers:arcgisToMapbox:parcels": "node packages/importers/arcgisToMapbox/index.js --job=parcels --max-old-space-size=500",
"importers:arcgisToMapbox:streets": "node packages/importers/arcgisToMapbox/index.js --job=streets",
"importers:arcgisToMapbox:pluggingReports": "node packages/importers/arcgisToMapbox/index.js --job=twdb_plugging_reports",
"importers:arcgisToMapbox:groundwaterDatabase": "node packages/importers/arcgisToMapbox/index.js --job=twdb_groundwater_database",
"importers:arcgisToMapbox:wellReports": "node packages/importers/arcgisToMapbox/index.js --job=twdb_well_reports"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"typescript": "^4.3.5",
"react-error-overlay": "6.0.9"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{md,mdx}": [
"prettier --write"
]
},
"resolutions": {
"react-error-overlay": "6.0.9"
}
}