-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "snowy-owls-ca",
"version": "1.0.0",
"description": "Looking for Snowy Owls Across Canada",
"scripts": {
"dev": "NODE_ENV=development API_PORT=3333 PORT=3000 node dev.js",
"size": "du -sh .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "run-s next:build next:export",
"next:dev": "next dev",
"next:build": "next build",
"next:export": "next export",
"next:start": "next start",
"sandbox": "npx sandbox",
"test": "NODE_ENV=testing PORT=6666 tape test/*.test.js ./test/**/*.test.js | tap-spec",
"start": "run-p sandbox dev"
},
"dependencies": {
"bootstrap": "^4.5.3",
"date-fns": "^2.16.1",
"leaflet": "^1.7.1",
"leaflet.markercluster": "^1.4.1",
"next": "10.0.3",
"react": "17.0.1",
"react-bootstrap": "^1.4.0",
"react-dom": "17.0.1",
"react-icons": "^4.1.0",
"react-leaflet": "^3.0.2",
"react-leaflet-markercluster": "^3.0.0-rc1",
"react-vis": "^1.11.7",
"swr": "^0.3.9",
"typeface-lora": "^1.1.13",
"typeface-open-sans": "^1.1.13"
},
"devDependencies": {
"@architect/sandbox": "latest",
"eslint": "^7.14.0",
"eslint-plugin-react": "^7.21.5",
"express": "^4.17.1",
"http-proxy-middleware": "^1.0.6",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"tap-spec": "^5.0.0",
"tape": "^5.0.1",
"tiny-json-http": "^7.3.0"
}
}