-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.13 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
{
"name": "salty-noodles",
"version": "1.0.0",
"description": "a playground for my free time",
"main": "server.js",
"scripts": {
"test": "elm-test",
"start": "nodemon server.js",
"test-watch": "elm-test --watch",
"start-elm": "elm-app start",
"debug-elm": "elm make --debug --output build/static/index.js src/Main.elm",
"build": "elm-app build",
"build-container": "docker build . -t johanstyl/noodle",
"container-dev": "docker run -p 3000:3000 --name noodle -d johanstyl/noodle",
"push-container": "docker push johanstyl/noodle",
"build-push": "npm run build && npm run build-container && npm run push-container",
"heroku": "npm run build && heroku container:push web -a salty-noodles && heroku container:release web -a salty-noodles",
"prod": "node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.1",
"unsplash-js": "^6.3.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"create-elm-app": "^5.22.0"
}
}