-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "lettarrboxd",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "git@github.com:ryanpag3/lettarrboxd.git",
"author": "Ryan Page <ryanapage@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node dist/index.js",
"start:dev": "nodemon src/index.ts",
"build": "tsc",
"test": "jest",
"test:unit": "jest --testPathIgnorePatterns=itest",
"test:integration": "jest --testPathPatterns=itest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"axios": "^1.10.0",
"bluebird": "^3.7.2",
"cheerio": "^1.1.0",
"dotenv": "^17.2.0",
"nodemon": "^3.1.10",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"zod": "^4.0.5"
},
"devDependencies": {
"@types/bluebird": "^3.5.42",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.15",
"express": "^5.1.0",
"jest": "^30.0.4",
"ts-jest": "^29.4.0"
}
}