-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"name": "botkit-eve",
"version": "1.0.0",
"description": "",
"main": "bot.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run prod",
"build": "npm-run-all clean transpile",
"client": "node ./dist/bot.js",
"dev": "NODE_ENV=development npm-run-all build client",
"prod": "NODE_ENV=production npm-run-all build client",
"transpile": "babel ./client --out-dir dist",
"clean": "rimraf dist-client",
"watch:dev": "nodemon"
},
"nodemonConfig": {
"exec": "npm run dev",
"watch": [
"client/*"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"botbuilder-adapter-facebook": "^1.0.8",
"botbuilder-storage-mongodb": "^0.9.5",
"botkit": "^4.6.2",
"botkit-plugin-cms": "^1.0.3",
"dotenv": "^7.0.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"regenerator-runtime": "^0.13.3",
"rimraf": "^3.0.2",
"socket.io-client": "^2.3.0",
"superagent": "^5.2.2"
}
}