-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.29 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
46
47
48
{
"name": "supercharged",
"version": "1.0.0",
"description": "Natural language activity tracking with GPT-3",
"main": "index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"format": "eslint --fix",
"start": "functions-framework --target=call",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kern/supercharged.git"
},
"author": "Alexander Kern <alex@kern.io>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kern/supercharged/issues"
},
"homepage": "https://github.com/kern/supercharged#readme",
"devDependencies": {
"@types/express": "^4.17.7",
"@types/jest": "^26.0.9",
"@types/luxon": "^1.24.3",
"@types/node-fetch": "^2.5.7",
"@types/ramda": "^0.27.14",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.6.0",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.2.2",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.0.5",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"dependencies": {
"@google-cloud/functions-framework": "^1.7.0",
"dotenv": "^8.2.0",
"env-var": "^6.3.0",
"express": "^4.17.1",
"luxon": "^1.24.1",
"node-fetch": "^2.6.1",
"ramda": "^0.27.1"
}
}