-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.72 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
{
"name": "minelev-dashboard",
"description": "Dashboard for MinElev",
"version": "2.1.0",
"license": "MIT",
"private": true,
"author": {
"name": "Geir Gåsodden",
"email": "[email protected]",
"url": "https://github.com/zrrrzzt"
},
"engines": {
"node": "12.x"
},
"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",
"standard-fix": "standard --fix",
"dev": "next",
"build": "next build",
"now-build": "next build",
"export": "next build && next export",
"start": "next start",
"deploy": "npm test && vercel --prod && rm -rf .vercel",
"deploy:prod": "npm run test-offline && vercel --local-config now-prod.json --prod --confirm && rm -rf .vercel",
"deploy:test": "npm run test-offline && vercel --local-config now-test.json --prod --confirm && rm -rf .vercel",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install",
"cleanup": "rm -rf .next && rm -rf out"
},
"keywords": [
"dashboard",
"next",
"status",
"Vestfold og Telemark fylkeskommune",
"minElev",
"Louie"
],
"repository": {
"type": "git",
"url": "https://github.com/telemark/minelev-dashboard.git"
},
"bugs": {
"url": "https://github.com/telemark/minelev-dashboard/issues"
},
"homepage": "https://github.com/telemark/minelev-dashboard",
"devDependencies": {
"ava": "3.15.0",
"coveralls": "3.1.0",
"nyc": "15.1.0",
"standard": "16.0.3"
},
"dependencies": {
"axios": "0.21.1",
"next": "10.0.9",
"react": "17.0.2",
"react-dom": "17.0.2"
}
}