-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "gun-next-example",
"version": "2.0.1",
"description": "Example app with GUN and Next.js",
"private": true,
"license": "MIT",
"author": {
"name": "Geir Gåsodden",
"email": "geir.gasodden@pythonia.no",
"url": "https://github.com/zrrrzzt"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/zrrrzzt/gun-next-example.git"
},
"bugs": {
"url": "https://github.com/zrrrzzt/gun-next-example/issues"
},
"homepage": "https://github.com/zrrrzzt/gun-next-example#readme",
"engines": {
"node": ">=12.17.0"
},
"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",
"start": "next start",
"export": "next build && next export",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install",
"cleanup": "rm -rf .next && rm -rf out",
"deploy": "vc --confirm --prod"
},
"keywords": [
"gun",
"next",
"example"
],
"dependencies": {
"gun": "0.2020.1235",
"next": "12.0.2",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"ava": "3.15.0",
"coveralls": "3.1.1",
"nyc": "15.1.0",
"standard": "16.0.4"
}
}