-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "pinkbike-notifier",
"version": "0.0.2",
"description": "",
"author": "Jai Smith",
"main": "src/server.js",
"scripts": {
"test": "eslint src/**.js",
"dev": "nodemon src/server.js --exec babel-node",
"start": "babel-node src/server.js",
"build": "babel src -d dist",
"prod": "yarn build; node dist/server.js"
},
"license": "ISC",
"engines": {
"node": "14.0.0",
"npm": "^6.14.4",
"yarn": "^1.22.4"
},
"dependencies": {
"@sendgrid/mail": "^7.2.0",
"axios": "^0.19.2",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"mongodb": "^3.5.8",
"morgan": "^1.9.1",
"textbelt": "^0.0.4",
"uid": "^1.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"nodemon": "^1.18.11"
}
}