-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
58 lines (58 loc) · 1.97 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
{
"name": "fb-local-chat-bot",
"version": "0.1.42",
"main": "index.js",
"description": "A ES6 Node client for Messenger Bot designed for easy local testing",
"dependencies": {
"dot": "1.0.3",
"express": "4.13.4",
"invariant": "2.2.1",
"request-promise": "3.0.0"
},
"scripts": {
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"watch": "babel --watch=./src --out-dir=./build --source-maps inline --copy-files",
"build": "babel ./src --out-dir=./build --source-maps inline --copy-files",
"web_watch": "webpack --watch --watch-polling --config ./localChatWeb/js/webpack.config.js",
"test": "mocha ./build/test",
"lint": "eslint src --fix",
"check": "npm run lint && npm run flow && npm run test",
"s": "nodemon --harmony example/jokeChatApp.js --watch example",
"joke": "node --harmony example/jokeChatApp.js",
"test_joke": "mocha ./example/test --compilers js:babel-register"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.4",
"babel-plugin-syntax-async-functions": "6.8.0",
"babel-plugin-syntax-trailing-function-commas": "6.8.0",
"babel-plugin-transform-async-to-module-method": "6.8.0",
"babel-plugin-transform-class-properties": "6.10.2",
"babel-plugin-transform-flow-strip-types": "6.8.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"chai": "3.5.0",
"classnames": "2.2.5",
"eslint": "2.12.0",
"eslint-config-defaults": "9.0.0",
"flow": "0.2.3",
"jquery": "3.0.0",
"json-loader": "0.5.4",
"mocha": "2.5.3",
"nodemon": "1.9.2",
"react": "15.1.0",
"react-dom": "15.1.0",
"supertest": "1.2.0",
"supertest-as-promised": "3.1.0",
"webpack": "1.13.1",
"react-bootstrap": "0.30.8"
},
"engines": {
"node": "4.4.5",
"npm": "2.15.5"
},
"license": "MIT",
"author": "Samping Chuang <[email protected]>"
}