-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.29 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
{
"name": "@coworking-metz/tickets-stats",
"version": "1.0.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"start": "node server",
"dev": "nodemon server",
"lint": "xo",
"test": "ava"
},
"dependencies": {
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"got": "^13.0.0",
"http-errors": "^2.0.0",
"ical-expander": "^3.1.0",
"jsonwebtoken": "^9.0.2",
"lodash-es": "^4.17.21",
"mongodb": "^4.17.1",
"morgan": "^1.10.0",
"nanoid": "^5.0.4",
"nodemailer": "^6.9.5",
"p-map": "^7.0.1",
"papaparse": "^5.4.1",
"passport": "^0.6.0",
"passport-oauth2": "^1.7.0"
},
"devDependencies": {
"ava": "^5.3.1",
"mongodb-memory-server": "^8.15.1",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"xo": "^0.56.0"
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"camelcase": "off",
"comma-dangle": [
"error",
"never"
],
"unicorn/prevent-abbreviations": "off",
"import/no-unassigned-import": "off",
"import/order": "off"
}
},
"engines": {
"node": ">=20.9"
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}