-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.73 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
{
"name": "bot",
"version": "0.0.1",
"description": "Node.js Bot platform. Boilerplate, start point, tools, best practices for building bots.",
"main": "dist/index.js",
"scripts": {
"build:dev": "webpack",
"build:dev:watch": "webpack --watch",
"start:dev": "./tools/start/dev.sh",
"start": "./tools/start/prod.sh",
"test": "mocha"
},
"author": "Maxim Vetrenko <[email protected]> (https://github.com/maxmert)",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.3.21",
"babel-eslint": "^5.0.4",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-config-evilai": "^0.0.1",
"eslint-import-resolver-webpack": "^0.6.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"mocha": "^3.1.2",
"source-map-support": "^0.4.3",
"webpack": "^1.8.4",
"webpack-dev-server": "^1.8.0"
},
"dependencies": {
"body-parser": "^1.15.2",
"co": "^4.6.0",
"express": "^4.14.0",
"finity": "^0.4.5",
"lodash": "^4.16.4",
"nbp-normaliser-fb-messenger": "0.0.1",
"nbp-locales": "0.0.2",
"nbp-adapter-google-datastore": "0.0.2",
"nbp-adapter-google-natural-language": "0.0.2",
"nbp-adapter-memcached": "0.0.2",
"nbp-adapter-wit": "0.0.2",
"nbp-logger": "0.0.1",
"nbp-adapter-fb-messenger": "0.0.2",
"nbp-rules": "0.0.1",
"nbp-skills-cluster": "0.0.1",
"newrelic": "^1.32.0"
}
}