-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.02 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
46
47
{
"name": "rate-coffee",
"version": "1.0.0",
"description": "does the coffee taste like bark or brew?",
"main": "server.js",
"author": {
"name": "Jonas Enge",
"email": "jonas.enge@t-fk.no",
"url": "https://github.com/telemark"
},
"contributors": [
{
"name": "Geir Gåsodden",
"email": "geir.gasodden@pythonia.no",
"url": "https://github.com/zrrrzzt"
}
],
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"deploy": "now -E production.env && now alias"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"axios": "0.27.2",
"gun": "0.2020.1237",
"next": "12.2.5",
"next-offline": "5.0.5",
"next-routes": "1.4.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.4.0"
},
"now": {
"name": "tfk-kaffe",
"alias": "rate-coffee.com",
"type": "npm",
"engines": {
"node": ">=10.0.0"
}
},
"devDependencies": {
"dotenv": "16.0.2"
}
}