-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.02 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
{
"scripts": {
"start": "tsc && node --unhandled-rejections=strict ./dist/app.js",
"add-assetsDir": "mkdir -p ./dist/public/users/images && mkdir -p ./dist/public/buses/images",
"debug": "export DEBUG=* && npm run add-assetsDir && npm run start",
"test": "mocha --bail --require ts-node/register --require source-map-support/register --recursive ./test/buses/**/*rm -f .git/index.lock --exit",
"test:debug": "export DEBUG=* && npm run test",
"dev": "nodemon"
},
"dependencies": {
"@hokify/agenda": "^6.3.0",
"@types/multer": "^1.4.7",
"argon2": "^0.41.0",
"axios": "^1.3.3",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-validator": "^6.15.0",
"express-winston": "^4.2.0",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.10.0",
"multer": "^1.4.5-lts.1",
"shortid": "^2.2.16",
"sinon": "^17.0.1",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.3.5",
"@types/copyfiles": "^2.4.1",
"@types/cors": "^2.8.13",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/mocha": "^10.0.4",
"@types/mockery": "^1.4.33",
"@types/node": "^18.15.3",
"@types/shortid": "^0.0.29",
"@types/sinon": "^17.0.0",
"@types/sinon-mongoose": "^1.3.15",
"@types/supertest": "^2.0.12",
"chai": "^4.3.7",
"copyfiles": "^2.4.1",
"crypto-browserify": "^3.12.0",
"events": "^3.3.0",
"mocha": "^10.2.0",
"mockery": "^2.1.0",
"node-mocks-http": "^1.13.0",
"nodemon": "^3.0.2",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"stream-browserify": "^3.0.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"util": "^0.12.5"
}
}