-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "spot-portfolio-tracker",
"version": "0.0.3",
"description": "Simple and handy portfolio tracking app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"reset": "node reset-db.js",
"start": "node index.js",
"dev": "npx nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urtuba/spot-portfolio-tracker.git"
},
"keywords": [
"spot",
"portfolio",
"investment",
"share",
"asset",
"crypto",
"fiat"
],
"author": "urtuba (Samed Kahyaoglu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/urtuba/spot-portfolio-tracker/issues"
},
"homepage": "https://github.com/urtuba/spot-portfolio-tracker#readme",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"express": "^4.17.1",
"nodemon": "^2.0.13"
},
"dependencies": {
"bcrypt": "^5.0.1",
"express-session": "^1.17.2",
"mongoose": "^6.1.1",
"mongoose-autopopulate": "^0.16.0",
"pug": "^3.0.2",
"uuid": "^8.3.2"
}
}