-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "maven-badges",
"version": "1.0.0",
"description": "A node.js implementation of maven-badges service.",
"engines": {
"node": ">=18"
},
"scripts": {
"tsc:watch": "tsc -w",
"tsc:build": "tsc",
"serve": "nodemon --inspect --watch dist/ -d 1 ./dist/main.js",
"test": "npm run tsc:build && mocha dist/test --timeout 15000 --exit",
"start": "node ./dist/main.js",
"postinstall": "npm run tsc:build"
},
"author": "marcin.baraniecki@softwaremill.com",
"license": "Apache-2.0",
"dependencies": {
"@types/redis": "^4.0.11",
"axios": "^1.7.9",
"express": "^4.21.2",
"heroku-logger": "^0.3.3",
"redis": "^4.7.0"
},
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/express": "^5.0.0",
"@types/heroku-logger": "^1.0.3",
"@types/mocha": "^10.0.10",
"@types/node": "~22.10.7",
"@types/redis-mock": "^0.17.3",
"@types/supertest": "^6.0.2",
"axios-mock-adapter": "^2.1.0",
"chai": "~5.1.2",
"mocha": "^11.0.1",
"nodemon": "^3.1.9",
"redis-mock": "^0.56.3",
"supertest": "^7.0.0",
"typescript": "~5.7.3"
}
}