-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
118 lines (118 loc) · 3.72 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
{
"name": "eviction-free-nyc",
"private": true,
"description": "Eviction Free NYC!",
"version": "1.0.0",
"author": "JustFix.nyc (hello@justfix.nyc)",
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@justfixnyc/geosearch-requester": "0.3.1",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/aws-lambda": "^8.10.61",
"@types/lodash": "^4.14.161",
"@types/node": "^14.11.2",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/twilio": "^2.11.0",
"babel-polyfill": "^6.26.0",
"caniuse-db": "^1.0.30000652",
"contentful": "^6.1.0",
"dotenv": "^8.2.0",
"es6-promise": "^4.2.4",
"extract-text-webpack-plugin": "1.0.1",
"gatsby": "^1.9.202",
"gatsby-image": "^1.0.5",
"gatsby-link": "^1.6.37",
"gatsby-plugin-i18n": "^0.4.1",
"gatsby-plugin-react-helmet": "^1.0.5",
"gatsby-plugin-typescript": "1.4.17",
"gatsby-source-contentful": "^1.3.0",
"gatsby-transformer-remark": "^1.7.37",
"intl": "^1.2.5",
"invariant": "^2.2.4",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.19",
"node-fetch": "^2.6.1",
"node-sass": "4.13.1",
"prettier": "^2.1.1",
"prop-types": "^15.7.2",
"pure-react-carousel": "^1.12.1",
"react": "^16.12.0",
"react-accessible-accordion": "^2.0.0",
"react-dom": "^16.12.0",
"react-geosuggest": "^2.7.0",
"react-intl": "^2.4.0",
"react-modal": "^3.3.1",
"react-phone-input-2": "^2.11.0",
"react-router-dom": "^4.1.1",
"react-select": "^1.2.1",
"react-social": "^1.10.0",
"react-typography": "^0.16.19",
"request": "^2.85.0",
"rollbar": "^2.19.3",
"rollup": "^2.26.10",
"sass-loader": "4.1.1",
"slash": "^1.0.0",
"source-map-support": "^0.5.19",
"spectre.css": "^0.5.1",
"twilio": "^3.49.3",
"typescript": "^4.0.2",
"typography": "^0.15.8",
"typography-breakpoint-constants": "^0.14.0",
"widont": "^0.3.3"
},
"keywords": [
"gatsby"
],
"license": "GNU General Public License v3.0",
"main": "n/a",
"scripts": {
"eslint": "eslint src --ext .js,.jsx,.ts,.tsx",
"netlify": "netlify",
"netlify:develop": "yarn build-serverless && concurrently -k \"netlify dev --port 8001\" \"yarn watch-serverless\"",
"develop": "gatsby develop",
"build": "gatsby build",
"build-serverless": "rollup -c",
"watch-serverless": "yarn rollup --watch --no-watch.clearScreen -c",
"lint": "yarn eslint && yarn typecheck && yarn prettier:check",
"lint:fix": "yarn eslint && yarn typecheck && yarn prettier:fix",
"prettier": "prettier",
"prettier:check": "prettier \"**/*.{ts,tsx,js,scss}\" --check",
"prettier:fix": "prettier \"**/*.{ts,tsx,js,scss}\" --write",
"prod": "npm run build-serverless && npm run build",
"start": "gatsby serve",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch"
},
"browserlist": [
"> 1%",
"IE > 10",
"last 2 versions"
],
"devDependencies": {
"@babel/register": "^7.11.5",
"@testing-library/react": "^10.4.9",
"@types/jest": "^26.0.13",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"babel-jest": "^26.3.0",
"concurrently": "^5.3.0",
"eslint": "^7.9.0",
"eslint-plugin-react": "^7.21.0",
"eslint-plugin-react-hooks": "^4.1.2",
"jest": "^26.4.2",
"netlify-cli": "^2.61.0"
}
}