forked from stevengill/pancake-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 801 Bytes
/
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
{
"name": "pancake-studio",
"version": "1.0.0",
"description": "A server that receives json payloads, flattens the keys and sends this new payload to passed in url",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"watch": "npx nodemon --watch server.js --watch public --exec npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevengill/pancake-studio.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/stevengill/pancake-studio/issues"
},
"homepage": "https://pancake.studio/",
"dependencies": {
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"flat": "^5.0.2",
"heroku-ssl-redirect": "^0.1.1"
}
}