-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "store-sweeper",
"version": "1.0.0",
"description": "an api to help search for apps on both the play-store and app-store",
"main": "app.cjs",
"scripts": {
"build": "rm -rf ./dist && esbuild --bundle src/app.ts --outdir=dist --minify --sourcemap --platform=node --format=cjs && mv dist/app.js dist/app.cjs",
"dev": "nodemon",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"author": "Sameer Kolhar <sameer@tramline.app>",
"license": "ISC",
"dependencies": {
"cors": "2.8.5",
"dotenv": "16.4.7",
"express": "4.21.2",
"express-winston": "4.2.0",
"google-play-scraper": "file:vendor/google-play-scraper",
"jsonwebtoken": "9.0.2",
"string-similarity-js": "2.1.4",
"winston": "3.17.0"
},
"devDependencies": {
"@tsconfig/node20": "20.1.4",
"@types/cors": "2.8.17",
"@types/express": "5.0.0",
"@types/jest": "29.5.14",
"@types/jsonwebtoken": "9.0.8",
"esbuild": "0.25.0",
"jest": "29.7.0",
"nodemon": "3.1.9",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
}
}