-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "Aviation Weather Processor",
"version": "1.0.0",
"description": "A simple etl process for NOAA weather.",
"type": "module",
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Timothy von Hollen",
"license": "WTFPL",
"dependencies": {
"axios": "0.26.1",
"express": "4.17.3",
"mongoose": "6.2.7",
"tslib": "2.3.1",
"xml2js": "0.4.23"
},
"devDependencies": {
"@types/express": "4.17.13",
"@types/jest": "27.4.1",
"@types/mongoose": "5.11.97",
"@types/node": "17.0.21",
"@types/xml2js": "^0.4.9",
"@typescript-eslint/eslint-plugin": "5.15.0",
"@typescript-eslint/parser": "5.15.0",
"eslint": "8.11.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.1.1",
"jest": "27.5.1",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"ts-jest": "27.1.3",
"tsutils": "3.21.0",
"typescript": "4.6.2"
}
}