-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.36 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
{
"name": "serverless-chat",
"version": "1.0.0",
"description": "An example how to build a serverless chat system with AWS IOT Gateway",
"private": true,
"scripts": {
"clean": "rm -rf site",
"build-site": "mkdir -p site && node src/util/package-html.js",
"build-scripts": "webpack",
"build-styles": "mkdir -p site && cleancss -o site/$npm_package_version/main.css src/style/main.css",
"serve-dev": "http-server site -c-1",
"rebuild": "npm run clean && npm run build-site --$npm_package_name:buildenv=$npm_package_config_buildenv && webpack && npm run build-styles",
"env": "env"
},
"config": {
"buildenv": "dev"
},
"author": "",
"contributors": [
"Alexander Simovic (https://github.com/simalexan)",
"Slobodan Stojanovic <slobodan@cloudhorizon.com> (http://slobodan.me/)"
],
"license": "MIT",
"devDependencies": {
"babili-webpack-plugin": "0.0.10",
"clean-css": "^4.0.7",
"clean-css-cli": "^4.0.7",
"crypto-js": "^3.1.8",
"eslint": "^3.15.0",
"eslint-config-crockford": "^1.0.0",
"eslint-config-defaults": "^9.0.0",
"exports-loader": "^0.6.3",
"handlebars": "^4.0.6",
"http-server": "^0.9.0",
"imports-loader": "^0.7.0",
"webpack": "^2.2.1"
},
"dependencies": {
"aws-sdk": "^2.13.0",
"bootstrap": "^3.3.7",
"jquery": "^3.1.1",
"paho-mqtt": "^1.0.3"
}
}