-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.05 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
71
72
73
74
75
76
77
{
"name": "rental-database",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"abbrev": "^1.1.1",
"agent-base": "^6.0.2",
"ansi-regex": "^5.0.1",
"aproba": "^2.0.0",
"are-we-there-yet": "^2.0.0",
"balanced-match": "^1.0.2",
"bcrypt": "^5.1.1",
"brace-expansion": "^1.1.11",
"chownr": "^2.0.0",
"color-support": "^1.1.3",
"concat-map": "^0.0.1",
"console-control-strings": "^1.1.0",
"debug": "^4.3.7",
"delegates": "^1.0.0",
"detect-libc": "^2.0.3",
"emoji-regex": "^8.0.0",
"fs-minipass": "^2.1.0",
"fs.realpath": "^1.0.0",
"gauge": "^3.0.2",
"glob": "^7.2.3",
"has-unicode": "^2.0.1",
"https-proxy-agent": "^5.0.1",
"inflight": "^1.0.6",
"inherits": "^2.0.4",
"is-fullwidth-code-point": "^3.0.0",
"make-dir": "^3.1.0",
"minimatch": "^3.1.2",
"minipass": "^5.0.0",
"minizlib": "^2.1.2",
"mkdirp": "^1.0.4",
"ms": "^2.1.3",
"node-addon-api": "^5.1.0",
"node-fetch": "^2.7.0",
"nopt": "^5.0.0",
"npmlog": "^5.0.1",
"object-assign": "^4.1.1",
"once": "^1.4.0",
"path-is-absolute": "^1.0.1",
"readable-stream": "^3.6.2",
"rimraf": "^3.0.2",
"safe-buffer": "^5.2.1",
"semver": "^7.6.3",
"set-blocking": "^2.0.0",
"signal-exit": "^3.0.7",
"string_decoder": "^1.3.0",
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1",
"tar": "^6.2.1",
"tr46": "^0.0.3",
"util-deprecate": "^1.0.2",
"webidl-conversions": "^3.0.1",
"whatwg-url": "^5.0.0",
"wide-align": "^1.1.5",
"wrappy": "^1.0.2",
"yallist": "^4.0.0"
},
"devDependencies": {
"nodemon": "^3.1.7"
},
"scripts": {
"install": "npm --prefix backend install backend",
"dev:backend": "npm install --prefix backend start",
"sequelize": "npm run --prefix backend sequelize",
"sequelize-cli": "npm run --prefix backend sequelize-cli",
"start": "npm start --prefix backend",
"build": "npm run --prefix backend build"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}