-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.42 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": "webpack-electron-angular2-foundation-starterkit",
"version": "0.0.2",
"description": "Prepared startkit to build desktop web apps with the newest technologies",
"main": "browser.js",
"scripts": {
"build": "webpack --progress --profile --colors --display-error-details --display-cached",
"watch": "webpack --watch --progress --profile --colors --display-error-details --display-cached",
"dev": "npm run build & npm run watch & npm run electron",
"clean": "rm -f build/* & rm npm-debug.log*",
"electron": "electron src/browser"
},
"author": "nextlevelshit ([email protected])",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"css-loader": "^0.23.1",
"electron-prebuilt": " ^0.35.4",
"es6-shim": "^0.34.0",
"extract-text-webpack-plugin": "^1.0.1",
"foundation": "^4.2.1",
"foundation-sites": "^6.1.1",
"jquery": "^2.2.0",
"json-loader": "^0.5.4",
"node-sass": "^3.4.2",
"sass-loader": "^3.1.2",
"script-loader": "^0.6.1",
"style-loader": "^0.13.0",
"stylus-loader": "^1.4.3",
"ts-loader": "^0.7.2",
"typescript": "^1.7.3",
"webpack": "^1.12.11"
},
"dependencies": {
"angular2": "2.0.0-beta.0",
"es6-shim": "^0.33.3",
"foundation-sites": "^6.1.1",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.0",
"zone.js": "^0.5.10"
}
}