-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 993 Bytes
/
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
{
"name": "js-chat-demo",
"version": "1.0.0",
"description": "Demo project for chat-SDK-JS",
"scripts": {
"config": "node misc/config.js",
"start": "node misc/open.js",
"build": "webpack --progress",
"watch": "webpack --progress --watch",
"deploy": "bash misc/deploy.sh",
"lint": "eslint src/*.jsx src/*/*.jsx"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.2.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"eslint": "^3.18.0",
"eslint-plugin-react": "^6.10.3",
"html-webpack-plugin": "^2.26.0",
"json-loader": "^0.5.4",
"style-loader": "^0.13.1",
"webpack": "^2.2.1"
},
"dependencies": {
"inquirer": "^2.0.0",
"normalize.css": "^5.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"skygear": "^1.1.0",
"skygear-chat": "file:./chat-SDK-JS"
}
}