-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.02 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": "esra",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "npm-run-all --parallel serve build-watch",
"serve": "nodemon dist/app.js",
"build": "webpack",
"build-watch": "yarn build --watch",
"flow": "flow",
"flow-watch": "watch 'yarn flow'",
"lint": "eslint .",
"lint-watch": "watch 'yarn lint'",
"test": "jest",
"tdd": "yarn test --watch",
"exportAgent": "node ./utility/exportAgent.js",
"importAgent": "node ./utility/importAgent.js"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/runtime": "^7.4.4",
"actions-on-google": "^2.4.1",
"adm-zip": "^0.4.13",
"axios": "^0.18.0",
"body-parser": "^1.19.0",
"datejs": "^1.0.0-rc3",
"dialogflow": "^0.8.2",
"dotenv": "^7.0.0",
"eslint-plugin-jest": "^22.5.1",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"humps": "^2.0.1",
"minimist": "^1.2.0",
"nock": "^10.0.2",
"rimraf": "^2.6.3",
"uuid": "^3.3.2",
"winston": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.4.4",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-flowtype": "^3.7.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-mocha": "^5.2.0",
"flow-babel-webpack-plugin": "^1.1.1",
"flow-bin": "^0.97.0",
"flow-typed": "^2.5.1",
"jest": "^24.8.0",
"mocha": "^5.2.0",
"mocha-loader": "^2.0.0",
"nodemon": "^1.19.0",
"nyc": "^13.1.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.2.0",
"supertest": "^3.3.0",
"watch": "^1.0.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-node-externals": "^1.7.2",
"yarn-run-all": "^3.1.1"
}
}