-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "pledge2protect",
"version": "1.0.0",
"engines": {
"node": "10.x"
},
"scripts": {
"start": "node server",
"start:heroku": "heroku local",
"build": "cd react-ui/ && npm install && npm run build",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"cacheDirectories": [
"node_modules",
"react-ui/node_modules"
],
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.16.4",
"express-basic-auth": "^1.2.0",
"json2csv": "^5.0.3",
"mailchimp-api-v3": "^1.13.1",
"mysql": "^2.18.1"
},
"repository": {
"type": "git",
"url": "https://github.com/MainersMatter/pledge2protect.git"
},
"keywords": [
"node",
"heroku",
"create-react-app",
"react",
"maine"
],
"license": "MIT",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0"
}
}