-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "tchecker",
"version": "0.0.0",
"repository": "https://github.com/dmitryt/tchecker",
"author": "Dmitry Tselinko <[email protected]>",
"license": "MIT",
"main": "electron/main.js",
"scripts": {
"ng": "ng",
"start": "sed -i -e s/\\\\\\$__PORT__\\\\\\$/$PORT/g dist/main.bundle.js && npm run proxy",
"start:web": "concurrently 'ng serve' 'npm run proxy'",
"start:desktop": "concurrently 'ng build && npm start' 'electron .'",
"start:desktop:dev": "concurrently 'npm run proxy' 'ng serve' 'electron . --dev=true'",
"proxy": "node proxy-server.js",
"proxy:dev": "nodemon proxy-server.js",
"build": "ng build",
"build:prod": "ng build --env=prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"dotenv": "^4.0.0",
"koa": "^2.3.0",
"koa-body": "^2.3.0",
"koa-router": "^7.2.1",
"koa-static": "^3.0.0",
"koa2-cors": "^2.0.3",
"request": "^2.81.0",
"yargs": "^8.0.2"
},
"devDependencies": {
"codelyzer": "~2.0.0",
"concurrently": "^3.4.0",
"electron": "^1.6.10",
"electron-reload": "^1.2.1",
"json-server": "^0.10.1",
"nodemon": "^1.11.0"
}
}