This repository was archived by the owner on Aug 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.15 KB
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
{
"name": "tourisitx",
"version": "2.0.0",
"description": "NodeJS port of Tourisit",
"main": "app.js",
"scripts": {
"start": "node app",
"prestart": "npm run install-prod",
"watch": "nodemon app",
"install-prod": "npm i",
"install-dev": "npm i --save-dev",
"test": "eslint . --ext .js,.jsx,.ts,.tsx",
"auto-fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tokinoharu/TourisitX.git"
},
"author": "Tourisit Team (Alex, Amy, Chloe, Dylan)",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/Tokinoharu/TourisitX/issues"
},
"homepage": "https://github.com/Tokinoharu/TourisitX#readme",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bulma-divider": "^0.2.0",
"bulma-switch": "^2.0.0",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"csv-writer": "^1.6.0",
"dateformat": "^4.5.1",
"elasticsearch": "^16.7.2",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-handlebars": "^5.3.2",
"express-rate-limit": "^5.3.0",
"express-session": "^1.17.2",
"express-useragent": "^1.0.15",
"express-validation": "^3.0.8",
"file-type": "^16.5.2",
"formidable": "^1.2.2",
"handlebars": "^4.7.7",
"hash-anything": "^1.3.2",
"html-pdf-node": "^1.0.7",
"image-extensions": "^1.1.0",
"image-file-resize": "^1.0.4",
"mysql2": "^2.2.5",
"node-fetch": "^2.6.1",
"node-vibrant": "^3.2.1-alpha.1",
"nodemailer": "^6.6.3",
"puns.dev": "^0.1.5",
"puppeteer": "^10.1.0",
"random": "^3.0.6",
"random-words": "^1.1.1",
"round-to": "^5.0.0",
"sanitize-html": "^2.4.0",
"sequelize": "^6.6.5",
"sequelize-cli": "^6.2.0",
"socket.io": "^4.1.3",
"socket.io-client": "^4.1.3",
"stripe": "^8.167.0",
"sync-loop": "^0.1.1",
"time-ago": "^0.2.1",
"txtgen": "^2.2.8",
"uuid": "^8.3.2",
"validator": "^13.6.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"nodemon": "^2.0.12"
}
}