-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.66 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "luftstatus",
"version": "1.0.1",
"description": "",
"private": true,
"author": {
"name": "Jonas Enge",
"email": "[email protected]",
"url": "https://github.com/telemark"
},
"contributors": [
{
"name": "Geir Gåsodden",
"email": "[email protected]",
"url": "https://github.com/zrrrzzt"
}
],
"engines": {
"node": ">=10"
},
"scripts": {
"test": "standard && npm audit && ava",
"test-offline": "standard && ava",
"coverage": "nyc ava",
"coveralls": "nyc ava && nyc report --reporter=lcov && cat coverage/lcov.info | coveralls",
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"deploy": "now && now alias",
"standard-fix": "standard --fix",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install",
"clear": "rm -rf .next"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"@zeit/next-css": "1.0.1",
"axios": "0.25.0",
"babel-eslint": "10.1.0",
"express": "4.17.2",
"next": "12.1.0",
"next-offline": "5.0.5",
"next-routes": "1.4.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "4.3.1",
"react-map-gl": "7.0.6"
},
"devDependencies": {
"ava": "4.0.1",
"coveralls": "3.1.1",
"dotenv": "16.0.0",
"nyc": "15.1.0",
"standard": "16.0.4"
},
"dotenv": "production.env",
"standard": {
"ignore": [
"/static/*.js"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
}
}
}