-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
108 lines (108 loc) · 3.22 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
{
"name": "usdr-food",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.12.1",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.51",
"@now/node": "^1.8.5",
"@sendgrid/mail": "^7.4.5",
"@stripe/react-stripe-js": "^1.4.1",
"@stripe/stripe-js": "^1.15.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/airtable": "^0.8.1",
"@types/classnames": "^2.3.0",
"@types/cleave.js": "^1.4.5",
"@types/jest": "^24.0.0",
"@types/node": "^12.20.14",
"@types/numeral": "^0.0.30",
"@types/pluralize": "^0.0.29",
"@types/qs": "^6.9.7",
"@types/react": "^16.14.11",
"@types/react-dom": "^16.9.14",
"@types/react-redux": "^7.1.18",
"@types/redux": "^3.6.31",
"@types/slug": "^0.9.1",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"airtable": "^0.11.1",
"classnames": "^2.3.0",
"cleave.js": "^1.6.0",
"encoding": "^0.1.13",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "^5.1.0",
"eslint-plugin-flowtype": "^4.5.3",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"immutability-helper": "^3.1.1",
"interweave": "^12.7.1",
"markdown-it": "^11.0.1",
"moment": "^2.29.1",
"netlify-lambda": "^1.6.3",
"numeral": "^2.0.6",
"pluralize": "^8.0.0",
"prettier": "^1.19.1",
"qs": "^6.10.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-hook-form": "^5.7.2",
"react-markdown": "^5.0.0",
"react-redux": "^7.2.4",
"react-scripts": "4.0.3",
"redoodle": "^2.6.1",
"redux": "^4.1.0",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"sass": "^1.52.3",
"slug": "^4.0.4",
"stripe": "^8.160.0",
"typeface-inter": "^3.18.1",
"typescript": "~3.9.10"
},
"resolutions": {
"lodash": "^4.17.19",
"elliptic": "^6.5.3",
"bn.js": "^4.11.9"
},
"scripts": {
"dev": "yarn run start && yarn run start:api",
"start": "react-scripts start",
"start:api": "netlify-lambda serve src/api -c src/setupDotEnv.js",
"build": "yarn run build:client && yarn run build:api && node ./src/setupRedirects.js",
"build:client": "react-scripts build",
"build:api": "netlify-lambda build src/api -c src/setup-AbortController-workaround.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint './**/*.{ts,tsx}'",
"lint-fix": "eslint --fix './**/*.{ts,tsx}'"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react-router-dom": "^5.1.4",
"http-proxy-middleware": "^1.0.3",
"react-router-dom": "^5.1.2",
"webpack-node-externals": "^3.0.0"
}
}