-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.55 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
49
50
51
52
53
54
55
56
57
58
{
"name": "kiai",
"version": "4.1.0",
"description": "Kiai Voice Action Framework",
"main": "dist/Kiai.js",
"scripts": {
"dev": "npm run dev:ts",
"dev:ts": "tsc --watch",
"build": "npm run build:ts",
"build:ts": "tsc",
"prepare": "npm run build",
"test": "echo 'Coming soon!'",
"lint": "eslint --fix src/**"
},
"dependencies": {
"actions-on-google": "^2.13.0",
"amplitude": "^5.1.3",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"firebase-admin": "^9.3.0",
"firebase-functions": "^3.11.0",
"lodash": "^4.17.20",
"messageformat": "^2.0.4",
"uniqid": "^5.2.0",
"universal-analytics": "^0.4.23"
},
"devDependencies": {
"@firebase/app-types": "^0.6.1",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.37",
"@types/uniqid": "^5.3.0",
"@types/universal-analytics": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"npm-run-all": "^4.1.3",
"prettier": "^2.1.2",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git@github.com:mediamonks/kiai.git"
},
"author": {
"name": "Richard Heuser",
"email": "richard.heuser@mediamonks.com"
},
"license": "MIT",
"engines": {
"node": ">=10"
}
}