-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "day",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "next dev",
"start-prod": "next build && next start",
"start:db": "brew services start mongodb-community",
"stop:db": "brew services stop mongodb-community",
"db:test": "mongoimport --db daytest --collection days --drop --file ./test/fixtures/days.json",
"db:sam": "mongoimport --db daytest --collection days --drop --file ./data/days.json"
},
"bin": {
"image": "./bin/image.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapsam/beepboop.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapsam/beepboop/issues"
},
"homepage": "https://github.com/mapsam/beepboop#readme",
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"bulma": "^0.9.3",
"json-2-csv": "^3.14.4",
"moment": "^2.29.1",
"moment-range": "^4.0.2",
"mongodb": "^3.6.3",
"next": "^10.0.0",
"next-auth": "^3.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-dropdown": "^1.9.0",
"react-svg": "^11.1.1",
"reflect-metadata": "^0.1.13",
"typeorm": "0.2.28"
},
"devDependencies": {
"lorem-ipsum": "^2.0.3",
"node-sass": "^4.14.1"
},
"peerOptionalDependencies": {
"mongodb": "^3.6.3"
}
}