-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "auth-server",
"version": "1.0.0",
"author": "Marshall Amey",
"description": "Server to manage authorization flows through OAuth 2 for Spotify",
"proxy": "http://localhost:8081/",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"client": "cd client && npm start",
"server": "nodemon server.js",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.621.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.4",
"express": "^4.16.3",
"querystring": "^0.2.0",
"request": "^2.87.0"
},
"devDependencies": {
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"prettier": "^1.19.1",
"concurrently": "^5.3.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^2.0.6"
}
}