-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.65 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "messenger-webview",
"version": "1.0.0",
"description": "An example webhook for Facebook Messenger that shows how to use webviews with your bot.",
"main": "app.js",
"engines": {
"node": "v10.19.0"
},
"scripts": {
"start": "ts-node bin/www.ts",
"tsc": "tsc",
"test": "mocha",
"expose": "ngrok http 4000",
"pm2": "NODE_ENV=production pm2 start ts-node ./bin/www.ts --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/fbsamples/messenger-platform-samples.git"
},
"author": "Facebook",
"license": "ISC",
"dependencies": {
"@google-cloud/language": "^4.1.0",
"@openzeppelin/contracts": "^3.0.2",
"@truffle/hdwallet-provider": "^1.0.35",
"@types/sqlite3": "^3.1.6",
"babel-cli": "^6.23.0",
"babel-plugin-module-resolver": "^2.5.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-babili": "^0.0.11",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-register": "^6.23.0",
"babili-webpack-plugin": "^0.0.10",
"body-parser": "^1.16.1",
"chai-as-promised": "^7.1.1",
"cookie-parser": "~1.4.3",
"css-loader": "^0.26.1",
"debug": "~2.2.0",
"dotenv": "^8.2.0",
"ejs": "^2.5.5",
"eslint": "^4.18.2",
"express": "~4.14.0",
"express-winston": "^4.0.3",
"helmet": "^3.22.0",
"jade": "~1.11.0",
"lodash": "^4.17.13",
"mongoose": "^5.9.19",
"morgan": "~1.9.1",
"mysql": "^2.18.1",
"nodemon": "^1.11.0",
"pg": "^8.2.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-weui": "^1.0.3",
"recess": "^1.1.9",
"request": "^2.79.0",
"serve-favicon": "~2.3.0",
"sqlite": "^4.0.11",
"sqlite3": "^4.2.0",
"style-loader": "^0.13.1",
"truffle": "*",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"uglify-loader": "^1.4.0",
"web3": "^1.2.9",
"webpack": "^3.6.0",
"weui": "^1.1.1",
"whatwg-fetch": "^2.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"eslint-config-metalab": "^5.0.1",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-lodash-fp": "^2.1.3",
"eslint-plugin-react": "^6.10.0",
"mocha": "^3.2.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.54"
}
}