This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 2.13 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
{
"name": "onboard",
"version": "1.0.0",
"description": "Bot helps onboard new employees",
"main": "lib/index.js",
"engines": {
"node": "7.10.1"
},
"scripts": {
"prod": "node lib/index.js",
"start": "concurrently 'npm run server-dev' 'gulp' 'npm run redis'",
"server-dev": "./inenv.sh babel-watch src/index.js",
"ngrok": "ngrok http 3000 -subdomain=doorman-dev",
"redis": "redis-server",
"test": "ava",
"test-watch": "ava --watch",
"transpile": "babel --out-dir=lib src",
"lint": "eslint .",
"fix": "eslint . --fix",
"webui-dummy-server": "babel-watch src/dummy-ui.js",
"webui-dev": "concurrently 'npm run webui-dummy-server' 'gulp'",
"build": "gulp build",
"gulp": "gulp",
"bower": "bower",
"postinstall": "echo 'rebuild node-sass b/c Yarn bug' && npm rebuild node-sass && npm run bower install && npm run gulp clean && npm run gulp build",
"heroku-postbuild": "npm run gulp clean-transpiled && npm run transpile"
},
"author": "",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.1.8",
"botkit": "^0.5.1",
"botkit-storage-redis": "^1.1.0",
"bower": "^1.8.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-clean": "^0.3.2",
"gulp-load-plugins": "^1.1.0",
"gulp-sass": "^2.1.0",
"main-bower-files": "^2.13.1",
"node-sass": "^4.5.0",
"promisify-node": "^0.4.0",
"pug": "^2.0.0-beta11",
"uuid": "^3.0.1"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-watch": "^2.0.5",
"concurrently": "^3.3.0",
"eslint": "^3.13.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1"
},
"ava": {
"files": [
"test/**/*.js",
"!test/setup.js"
],
"require": [
"babel-register",
"babel-polyfill",
"./test/setup"
],
"babel": "inherit"
}
}