-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "land-explorer-back-end",
"version": "1.0.0",
"description": "Backend application for Land Explorer",
"main": "lib/main.js",
"license": "MIT",
"scripts": {
"dev:tsc": "tsc --watch -p .",
"dev:serve": "cross-env NODE_ENV=development nodemon -e js -w lib src/main.ts",
"dev": "run-p dev:*",
"test": "env-cmd -f .env.test ts-mocha",
"build": "tsc",
"serve": "pm2 start lib/main.js --time"
},
"author": "Hansen Salim",
"dependencies": {
"@hapi/basic": "^6.0.0",
"@hapi/hapi": "^20.2.1",
"@hapi/inert": "^6.0.5",
"@sendgrid/mail": "^7.7.0",
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"cross-env": "^7.0.3",
"dotenv": "^11.0.0",
"fs": "*",
"geojson2shp": "^0.5.0",
"hapi-auth-bearer-token": "^8.0.0",
"hapi-sequelizejs": "^4.5.0",
"joi": "^17.6.0",
"jsonwebtoken": "^9.0.0",
"mysql2": "^2.3.3",
"sequelize": "^6.17.0",
"socket.io": "^4.7.4",
"socketio-jwt": "^4.6.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@faker-js/faker": "^6.0.0-beta.0",
"@types/bcrypt": "^5.0.0",
"@types/chai": "^4.3.4",
"@types/hapi__hapi": "^20.0.10",
"@types/jsonwebtoken": "^9.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^17.0.21",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.13",
"@types/uuid": "^8.3.4",
"chai": "^4.3.7",
"env-cmd": "^10.1.0",
"mocha": "^10.2.0",
"nodemon": "^3.1.0",
"proxyquire": "^2.1.3",
"sequelize-cli": "^6.4.1",
"sinon": "^15.0.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^5.4.3"
}
}