forked from twilio-labs/twilio-mixologist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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
{
"name": "twilio-barista",
"version": "2.0.0",
"main": "server/index.js",
"repository": {
"url": "git@github.com:dkundel/twilio-barista.git",
"type": "git"
},
"engines": {
"node": "~8.1.3"
},
"eslintConfig": {
"extends": "eslint-config-synacor"
},
"author": "Dominik Kundel <dominik.kundel@gmail.com>",
"license": "MIT",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node .",
"start:dev": "node-env-run . -f | pino-colada",
"test": "eslint src && preact test",
"build:preact": "preact build --src client --dest client-dist --no-prerender",
"build": "npm-run-all -p build:*",
"serve": "npm-run-all -p serve:*",
"serve:preact": "npm run build:preact && preact serve --dir client-dist",
"dev": "npm-run-all -p dev:*",
"dev:preact": "watch 'npm run build:preact' client/ shared/",
"dev:api": "watch 'npm run start:dev' server/ shared/ "
},
"devDependencies": {
"eslint": "^4.1.1",
"eslint-config-synacor": "^1.0.1",
"node-env-run": "^1.0.1",
"npm-run-all": "^4.0.2",
"pino-colada": "^1.4.0",
"preact-cli": "^1.4.1",
"watch": "^1.0.2"
},
"dependencies": {
"@material/select": "^0.3.9",
"basic-auth": "^1.1.0",
"body-parser": "^1.17.2",
"buffer": "^5.0.6",
"classnames": "^2.2.5",
"dompurify": "^0.9.0",
"event-emitter": "^0.3.5",
"express": "^4.15.3",
"express-pino-logger": "^2.0.0",
"if-env": "^1.0.0",
"lodash.template": "^4.4.0",
"lodash.uniqby": "^4.7.0",
"material-design-lite": "^1.3.0",
"moment": "^2.18.1",
"pino": "^4.6.0",
"preact": "^8.1.0",
"preact-compat": "^3.16.0",
"preact-mdl": "^2.2.1",
"preact-router": "^2.5.2",
"twilio": "^3.5.0-alpha.1",
"twilio-common": "^0.1.6",
"twilio-sync": "^0.5.8",
"url-join": "^2.0.2"
}
}