-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "jobsort-server",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "cd client && npm run build",
"coverage": "cd client && npm run coverage",
"coveralls": "cd client && npm run coveralls",
"heroku": "node app.js",
"start": "cd client && npm start",
"test": "cd client && npm test",
"travis": "npm install && cd client && npm install",
"client": "cd client && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon app.js"
},
"dependencies": {
"async": "^2.6.0",
"aws-sdk": "^2.395.0",
"body-parser": "~1.18.2",
"cheerio": "^1.0.0-rc.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "^4.16.3",
"html-to-text": "^3.3.0",
"jade": "~1.11.0",
"morgan": "~1.9.0",
"node-fetch": "^1.7.3",
"node-mysql": "^0.4.2",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"serve-favicon": "~2.4.5"
},
"devDependencies": {
"concurrently": "^4.1.0",
"eslint": "^5.13.0",
"nodemon": "^1.18.9"
}
}