forked from bloom-housing/bloom
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 4.59 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
{
"name": "bloom-housing",
"version": "4.4.0",
"author": "Sean Albert <sean.albert@exygy.com>",
"description": "Bloom is a system to manage processes for affordable housing",
"workspaces": {
"packages": [
"sites/public",
"sites/partners",
"backend/core",
"shared-helpers"
],
"nohoist": [
"**/@anchan828/nest-sendgrid"
]
},
"repository": "https://github.com/CityOfDetroit/bloom.git",
"license": "Apache-2.0",
"private": true,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"dev:app:public": "wait-on \"http-get://localhost:${PORT:-3100}/listings\" && cd sites/public && yarn dev",
"test:app:public": "wait-on \"http-get://localhost:${PORT:-3100}/listings\" && cd sites/public && yarn test",
"test:app:public:headless": "wait-on \"http-get://localhost:${PORT:-3100}/listings\" && cd sites/public && yarn test:headless",
"test:app:public:unit": "cd sites/public && yarn test:unit",
"build:app:public": "cd sites/public && yarn build",
"dev:app:partners": "wait-on \"http-get://localhost:${PORT:-3100}/listings\" && cd sites/partners && yarn dev",
"test:app:partners": "wait-on \"http-get://localhost:${PORT:-3100}/listings\" && cd sites/partners && yarn test",
"test:app:partners:headless": "wait-on \"http-get://localhost:${PORT:-3100}/listings\" && cd sites/partners && yarn test:headless",
"test:app:partners:unit": "cd sites/partners && yarn test:unit",
"build:app:partners": "cd sites/partners && yarn build",
"dev:backend": "cd backend/core && yarn dev",
"dev:all": "concurrently --names \" BACKEND_CORE,APP_PUBLIC,APP_PARTNERS\" --prefix \"{name}\" \"yarn dev:backend\" \"yarn dev:app:public\" \"yarn dev:app:partners\"",
"dev:frontend": "concurrently --names \" APP_PUBLIC,APP_PARTNERS\" --prefix \"{name}\" \"yarn dev:app:public\" \"yarn dev:app:partners\"",
"dev:partners": "concurrently \"yarn dev:backend\" \"yarn dev:app:partners\"",
"dev:public": "concurrently \"yarn dev:backend\" \"yarn dev:app:public\"",
"test:shared:helpers": "cd shared-helpers && yarn && yarn test",
"test:backend:core:dbsetup": "cd backend/core && yarn db:migration:run && yarn db:seed",
"test:backend:core:testdbsetup": "cd backend/core && yarn test:db:setup",
"test:backend:core": "cd backend/core && yarn test",
"test:e2e:backend:core": "cd backend/core && yarn test:e2e:local",
"test:apps": "concurrently \"yarn dev:backend\" \"yarn test:app:public\"",
"test:apps:headless": "concurrently \"yarn dev:backend\" \"yarn test:app:public:headless\"",
"test:public:unit-tests": "cd sites/public && yarn test:unit-tests",
"lint": "eslint '**/*.ts' '**/*.tsx' '**/*.js'",
"db:reseed": "cd backend/core && yarn db:reseed",
"install:all": "yarn install && cd backend/core && yarn install",
"setup": "yarn install:all && yarn db:reseed",
"clean": "rm -rf backend/core/dist/ backend/core/node_modules/ node_modules/ sites/partners/.next/ sites/partners/node_modules/ sites/public/.next/ sites/public/node_modules/"
},
"dependencies": {
"react-remove-scroll": "2.5.4",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@2.2.10"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"commitizen": "^4.2.4",
"concurrently": "^5.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.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.5.3",
"lerna": "^4.0.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.0",
"react": "18.2.0",
"react-test-renderer": "18.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.1",
"typescript": "4.6.4",
"wait-on": "^5.2.0"
},
"prettier": {
"singleQuote": false,
"printWidth": 100,
"semi": false
},
"husky": {
"hooks": {
"pre-commit": "echo '\n(1) Linting...\n----------' && lint-staged",
"commit-msg": "echo '\n(2) Verifying conventional commit format... \n (If this fails, install commitizen and commit with 'git cz' to automate the formatting!)\n----------' && commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --max-warnings 0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}