-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 996 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 996 Bytes
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": "webb-tracker-api",
"version": "2.0.0",
"description": "JWST Tracking API",
"main": "dist/main.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "node main.js",
"start:dev": "nodemon",
"lint": "eslint . --ext .ts,.js,",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"author": "Aslan VATSAEV (@avatsaev)",
"license": "ISC",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"devDependencies": {
"@tsconfig/node16": "1.0.2",
"@types/jest": "27.4.0",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"eslint": "8.6.0",
"jest": "27.4.5",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-jest": "27.1.2",
"ts-node": "^10.4.0",
"typescript": "4.5.4"
},
"dependencies": {
"fastify": "^3.25.2",
"fastify-cors": "^6.0.2",
"puppeteer": "^13.0.1"
}
}