forked from alanmoo/vesta-weather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.2 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
45
{
"name": "vesta-weather",
"version": "0.0.10",
"description": "Vestaboard visual weather functions, to be used on your own Node server",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/alanmoo/vesta-weather",
"scripts": {
"test": "jest --coverage src/**",
"dev": "nodemon --watch './**/*.ts' --exec 'ts-node' src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [
"vestaboard",
"vestaboard-installable"
],
"author": "Alan Mooiman",
"license": "MIT",
"devDependencies": {
"@types/axios-mock-adapter": "^1.10.0",
"@types/jest": "^29.2.4",
"@types/jsonwebtoken": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"axios-mock-adapter": "^1.21.2",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.3.1",
"prettier": "^2.6.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.6.3"
},
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.0.0",
"jsonwebtoken": "^8.5.1",
"luxon": "^3.1.1"
},
"files": [
"dist/**"
]
}