-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
163 lines (163 loc) · 7.37 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"name": "tenants2",
"version": "0.0.1",
"description": "JustFix tenants app number two",
"main": "index.js",
"scripts": {
"lingui": "lingui",
"django:makemessages": "python manage.py makemessages --all -e py,html -i coverage --no-wrap",
"django:compilemessages": "python manage.py compilemessages",
"lingui:extract": "lingui extract --clean --overwrite && node localebuilder.js --fix-616",
"lingui:compile": "lingui compile && node localebuilder.js",
"l10n:extract-and-check": "node localebuilder.js --check",
"l10n:extract": "yarn lingui:extract && yarn django:makemessages",
"l10n:compile": "yarn lingui:compile && yarn django:compilemessages",
"l10n:garble": "node localebuilder.js --garble && yarn l10n:compile",
"l10n:ungarble": "git checkout -- 'locales/**/*.po' && yarn l10n:compile",
"prettier": "prettier",
"prettier:check": "prettier \"**/*.{scss,json,js,ts,tsx}\" --check",
"prettier:fix": "prettier \"**/*.{scss,json,js,ts,tsx}\" --write",
"lint": "yarn typecheck && yarn eslint && yarn prettier:check",
"lint:fix": "yarn typecheck && yarn eslint && yarn prettier:fix",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch --preserveWatchOutput",
"eslint": "eslint frontend/lib --ext .ts,.tsx --rulesdir frontend/eslint/rules",
"test": "jest",
"test:watch": "jest --watch",
"sass_norent": "node-sass-chokidar frontend/sass/norent/styles.scss frontend/static/frontend/styles-norent.css --source-map frontend/static/frontend/styles-norent.css.map --source-map-contents --output-style compressed",
"sass_norent:watch": "yarn sass_norent --watch",
"sass_evictionfree": "node-sass-chokidar frontend/sass/evictionfree/styles.scss frontend/static/frontend/styles-evictionfree.css --source-map frontend/static/frontend/styles-evictionfree.css.map --source-map-contents --output-style compressed",
"sass_evictionfree:watch": "yarn sass_evictionfree --watch",
"sass_laletterbuilder": "node-sass-chokidar frontend/sass/laletterbuilder/styles.scss frontend/static/frontend/styles-laletterbuilder.css --source-map frontend/static/frontend/styles-laletterbuilder.css.map --source-map-contents --output-style compressed",
"sass_laletterbuilder:watch": "yarn sass_laletterbuilder --watch",
"sass": "node-sass-chokidar frontend/sass/styles.scss frontend/static/frontend/styles.css --source-map frontend/static/frontend/styles.css.map --source-map-contents --output-style compressed",
"sass:watch": "yarn sass --watch",
"graphql": "python manage.py graphql_schema && yarn querybuilder",
"querybuilder": "node querybuilder.js",
"querybuilder:watch": "node querybuilder.js --watch",
"webpack": "webpack",
"webpack:watch": "webpack --watch",
"safe_mode_snippet": "uglifyjs frontend/safe_mode/safe-mode.js -o frontend/safe_mode/safe-mode.min.js",
"safe_mode_snippet:watch": "node frontend/safe_mode/watcher.js",
"build": "yarn lingui:compile && yarn querybuilder && yarn sass && yarn sass_norent && yarn sass_evictionfree && yarn sass_laletterbuilder && yarn webpack && yarn safe_mode_snippet",
"start": "yarn lingui:compile && yarn querybuilder && yarn sass && yarn sass_norent && yarn sass_evictionfree && yarn sass_laletterbuilder && concurrently --kill-others \"yarn webpack:watch\" \"yarn sass:watch\" \"yarn sass_norent:watch\" \"yarn sass_evictionfree:watch\" \"yarn sass_laletterbuilder:watch\" \"yarn querybuilder:watch\" \"yarn safe_mode_snippet:watch\"",
"server:start": "yarn django:compilemessages && python -m debugpy --listen 0.0.0.0:5678 manage.py runserver"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justfixnyc/tenants2.git"
},
"author": "JustFix <dev@justfix.org>",
"license": "ISC",
"engines": {
"node": ">=10.0.0"
},
"bugs": {
"url": "https://github.com/justfixnyc/tenants2/issues"
},
"homepage": "https://github.com/justfixnyc/tenants2#readme",
"devDependencies": {
"@testing-library/dom": "7.5.2",
"@testing-library/react": "10.0.4",
"@types/eslint": "7.2.10",
"@types/jest": "26.0.19",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"babel-jest": "26.6.3",
"chokidar": "3.3.0",
"concurrently": "5.3.0",
"dotenv": "8.2.0",
"eslint": "7.8.1",
"eslint-plugin-react-hooks": "4.1.1",
"jest": "26.6.3",
"prettier": "2.0.4",
"webpack-bundle-analyzer": "4.4.1"
},
"resolutions": {
"@types/react": "16.8.22",
"@lingui/cli/opencollective": "file:./frontend/fake-opencollective"
},
"dependencies": {
"@babel/core": "7.9.6",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-decorators": "7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-syntax-dynamic-import": "7.7.4",
"@babel/plugin-transform-react-jsx": "7.7.4",
"@babel/preset-env": "7.7.6",
"@babel/preset-typescript": "7.9.0",
"@babel/register": "7.7.4",
"@contentful/rich-text-react-renderer": "15.0.0",
"@contentful/rich-text-types": "15.0.0",
"@frontapp/plugin-sdk": "^1.0.1",
"@justfixnyc/contentful-common-strings": "^0.0.2",
"@justfixnyc/geosearch-requester": "1.0.0",
"@justfixnyc/react-aria-modal": "5.1.0",
"@justfixnyc/util": "0.2.0",
"@lingui/cli": "2.9.1",
"@lingui/macro": "2.9.1",
"@lingui/react": "2.9.1",
"@loadable/babel-plugin": "5.13.2",
"@loadable/component": "5.14.1",
"@loadable/server": "5.14.2",
"@loadable/webpack-plugin": "5.14.2",
"@types/amplitude-js": "^5.11.0",
"@types/cheerio": "0.22.9",
"@types/classnames": "2.2.11",
"@types/deep-equal": "1.0.1",
"@types/glob": "7.1.1",
"@types/graphql": "14.2.0",
"@types/leaflet": "1.4.0",
"@types/lingui__macro": "2.7.3",
"@types/lingui__react": "2.8.2",
"@types/loadable__component": "5.13.3",
"@types/loadable__server": "5.12.5",
"@types/node": "10.17.3",
"@types/react": "16.8.22",
"@types/react-dom": "16.8.5",
"@types/react-headroom": "^2.2.1",
"@types/react-helmet": "5.0.9",
"@types/react-router-dom": "5.1.5",
"@types/react-transition-group": "4.4.0",
"@types/smoothscroll-polyfill": "0.3.0",
"@types/source-map-support": "0.4.1",
"apollo": "2.25.0",
"autobind-decorator": "2.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "8.0.5",
"babel-plugin-dynamic-import-node": "2.2.0",
"babel-plugin-macros": "2.8.0",
"bulma": "0.9.0",
"bulma-divider": "0.2.0",
"chalk": "4.1.0",
"cheerio": "1.0.0-rc.3",
"classnames": "2.3.1",
"core-js": "3.1.4",
"cross-fetch": "3.1.5",
"deep-equal": "2.0.5",
"downshift": "3.4.1",
"fp-ts": "^2.8.3",
"glob": "7.1.4",
"juice": "6.0.0",
"node-sass-chokidar": "1.5.0",
"pofile": "1.1.0",
"raw-loader": "4.0.1",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-headroom": "^3.1.0",
"react-helmet-async": "1.0.2",
"react-router-dom": "5.2.0",
"react-transition-group": "4.4.1",
"regenerator-runtime": "0.13.2",
"smoothscroll-polyfill": "0.4.3",
"source-map-support": "0.5.9",
"toml": "^3.0.0",
"typescript": "4.2.3",
"uglify-js": "3.13.3",
"webpack": "5.35.1",
"webpack-cli": "4.6.0",
"webpack-node-externals": "3.0.0"
}
}