-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 2.01 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
{
"name": "your-app-name",
"private": true,
"version": "0.1.0",
"description": "your app description",
"main": "index.js",
"scripts": {
"start": "cross-env ELECTRON_ENV=production electron .",
"build:render": "cross-env NODE_ENV=production webpack",
"build:main": "tsc --project tsconfig.main.json --rootDir ./src/ --outDir ./",
"build": "concurrently \"npm run build:render\" \"npm run build:main\"",
"debug": "concurrently \"cross-env NODE_ENV=debug webpack-dev-server --content-base build --watch\" \"wait-on http://localhost:8080 && electron . --enable-logging --remote-debugging-port=9222",
"develop": "concurrently \"cross-env NODE_ENV=develop webpack-dev-server --content-base build --hot\" \"wait-on http://localhost:8080 && electron .\""
},
"author": "Meirion Hughes <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^7.0.12",
"aurelia-animator-css": "^1.0.1",
"aurelia-animator-velocity": "^1.1.0",
"aurelia-bootstrapper": "^2.0.1",
"aurelia-fetch-client": "^1.0.1",
"aurelia-framework": "^1.1.0",
"aurelia-loader-webpack": "^2.0.0",
"aurelia-pal": "^1.3.0",
"aurelia-router": "^1.2.1",
"aurelia-webpack-plugin": "^2.0.0-rc.1",
"autoprefixer": "^6.7.7",
"babili-webpack-plugin": "0.0.11",
"bootstrap": "^4.0.0-beta",
"concurrently": "^3.4.0",
"cross-env": "^4.0.0",
"css-loader": "^0.28.0",
"file-loader": "^0.11.1",
"font-awesome": "^4.7.0",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"jquery": "^3.2.1",
"json-loader": "^0.5.4",
"node-sass": "^4.5.2",
"popper.js": "^1.12.5",
"postcss-loader": "^1.3.3",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"ts-loader": "^2.0.3",
"typescript": "^2.2.2",
"url-loader": "^0.5.8",
"wait-on": "^2.0.2",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2",
"whatwg-fetch": "^2.0.3",
"write-file-webpack-plugin": "^4.0.0"
},
"dependencies": {
"electron": "^1.7.8"
}
}