-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
83 lines (83 loc) · 1.75 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
78
79
80
81
82
83
{
"name": "sgarden-backend",
"version": "1.0.0",
"private": true,
"description": "The backend of sgarden platform.",
"repository": "github:robotics-4-all/sgarden-backend",
"contributors": [
{
"name": "Thomas Karanikiotis",
"email": "[email protected]"
}
],
"type": "module",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js --watch .",
"lint": "eslint . --cache",
"start": "cross-env NODE_ENV=production node server.js",
"test": "c8 ava"
},
"nodemonConfig": {
"env": {
"NODE_ENV": "development",
"NODE_OPTIONS": "--trace-warnings"
},
"watch": [
"src",
"server.js",
".env"
]
},
"prettier": "@iamnapo/prettier-config",
"eslintConfig": {
"extends": "iamnapo",
"rules": {
"import/no-unresolved": [
"error",
{
"ignore": [
"ava",
"got"
]
}
]
}
},
"ava": {
"timeout": "1m",
"verbose": true
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@iamnapo/prettier-config": "^1.0.3",
"ava": "^5.3.1",
"c8": "^10.1.2",
"eslint": "^8.34.0",
"eslint-config-iamnapo": "^28.2.0",
"got": "^14.4.3",
"nodemon": "^2.0.20",
"test-listen": "^1.1.0"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"@sentry/node": "^7.38.0",
"bcryptjs": "^2.4.3",
"chalk": "^5.2.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.9.2",
"mongoose-lean-defaults": "^2.2.1",
"morgan": "^1.10.0",
"ramda": "^0.28.0",
"serve-favicon": "^2.5.0",
"yup": "^1.0.0"
}
}