-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 821 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 821 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
{
"name": "vitabot-api",
"version": "1.0.13",
"description": "Interact with https://vitamin.tips api",
"main": "dist/index.js",
"scripts": {
"test": "npm run build && npm start",
"build": "tsc",
"start": "node .",
"watch": "tsc --watch",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"author": "JeanOUINA",
"license": "UNLICENSED",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.11.0",
"express": "^4.18.2",
"typescript": "^4.6.2"
},
"dependencies": {
"node-fetch": "2",
"tweetnacl": "^1.0.3"
},
"peerDependencies": {
"express": "^4.18.2"
}
}