-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.16 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "call-collect",
"version": "1.0.0",
"private": true,
"description": "TK",
"keywords": [
"TK"
],
"homepage": "https://github.com/alecglassford/call-collect#readme",
"bugs": {
"url": "https://github.com/alecglassford/call-collect/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/alecglassford/call-collect.git"
},
"license": "Apache-2.0",
"author": {
"name": "Alec Glassford",
"email": "[email protected]",
"url": "https://alecglassford.com"
},
"main": "server.js",
"scripts": {
"build-docs": "node docs/_build.js",
"build": "rollup -c",
"dev": "nodemon -r dotenv/config -r source-map-support/register server.js --watch server.js & rollup -c -w",
"start": "node server.js > /dev/null 2>&1",
"test": "eslint --ext .html,.js server/ client/"
},
"husky": {
"hooks": {
"pre-commit": "npm run build-docs && git add docs"
}
},
"dependencies": {
"@google-cloud/speech": "^1.5.0",
"@google-cloud/storage": "^1.7.0",
"airtable": "^0.5.6",
"audio-recorder-polyfill": "github:alecglassford/audio-recorder-polyfill#bb7572a9cca8871a6652c6cb53fb5edca7f96269",
"compression": "^1.7.3",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"multer": "^1.3.1",
"twilio": "^3.18.0"
},
"devDependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"bootstrap": "^4.1.3",
"dotenv": "^6.0.0",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-import": "^2.13.0",
"glob": "^7.1.2",
"husky": "^1.0.0-rc.13",
"marked": "^0.4.0",
"nodemon": "^1.18.3",
"purify-css": "^1.2.5",
"rollup": "^0.63.4",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sass": "^0.9.2",
"rollup-plugin-svelte": "^4.2.1",
"rollup-plugin-uglify": "^3.0.0",
"source-map-support": "^0.5.6",
"svelte": "^1.64.1",
"svelte-routing": "^0.2.0",
"svelte-transitions": "^1.2.0"
}
}