forked from latestchatty/chatty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "chatty",
"version": "1.0.0",
"description": "A web based alternate client for the shacknews chatty (http://www.shacknews.com/chatty).",
"author": "Andy Christianson",
"license": "MIT",
"repository": "https://github.com/NiXXeD/chatty",
"scripts": {
"start": "webpack-dev-server --progress --colors --display-error-details --inline",
"build": "webpack",
"stats": "webpack --profile --json > stats.json",
"server": "http-server build --cors -p 3000"
},
"engines": {
"node": ">= 4.2.1 <= 5",
"npm": ">= 2 <= 3"
},
"dependencies": {
"angular2": "2.0.0-beta.0",
"es6-promise": "3.0.2",
"es6-shim": "0.33.3",
"es7-reflect-metadata": "1.5.5",
"rxjs": "5.0.0-beta.0",
"zone.js": "0.5.10",
"lodash": "3.10.1"
},
"devDependencies": {
"clean-webpack-plugin": "0.1.8",
"copy-webpack-plugin": "0.3.3",
"css-loader": "0.23.1",
"extract-text-webpack-plugin": "1.0.1",
"html-webpack-plugin": "2.7.2",
"http-server": "0.8.5",
"postcss-loader": "0.8.0",
"precss": "1.4.0",
"raw-loader": "0.5.1",
"style-loader": "0.13.0",
"stylelint": "4.3.3",
"stylelint-config-standard": "3.0.0",
"ts-loader": "0.8.0",
"typescript": "1.7.5",
"webpack": "1.12.12",
"webpack-dev-server": "1.14.1",
"webpack-merge": "0.7.3"
}
}