-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
71 lines (71 loc) · 2.3 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "on-office",
"productName": "OnOffice",
"description": "Instant Office, just add browser.",
"version": "1.3.2",
"license": "MIT",
"author": "Ruben van der Leun",
"main": "dist/main.js",
"scripts": {
"build": "npm run build-client && npm run build-electron",
"build-electron": "ng build --base-href . && cp -R src/electron/* dist && ln -s ../client/dist dist/client",
"build-electron:windows": "ng build --base-href . && xcopy .\\src\\electron\\* dist /s && xcopy .\\client .\\dist\\client /I /S",
"build-client": "cd client && npm run build && cd ..",
"start:electron": "npm run build-electron && electron dist/main.js",
"start": "npm run build && electron dist/main.js",
"start-windows": "npm run build-client && npm run build-electron:windows && electron dist/main.js"
},
"private": true,
"dependencies": {
"@angular/animations": "^5.2.11",
"@angular/platform-server": "^5.2.11",
"@types/webrtc": "0.0.25",
"bootstrap": "^4.4.1",
"cors": "^2.8.5",
"electron-json-storage": "^4.1.8",
"express": "^4.17.1",
"install": "^0.13.0",
"internal-ip": "^4.3.0",
"intro.js": "^2.9.3",
"npm": "^6.13.1",
"peer": "^0.2.10",
"simple-peer": "^9.6.2",
"uniqid": "^5.2.0",
"webrtc-adapter": "^7.3.0"
},
"devDependencies": {
"@angular/cli": "1.7.4",
"@angular/common": "^5.2.11",
"@angular/compiler": "^5.2.11",
"@angular/compiler-cli": "^5.2.11",
"@angular/core": "^5.2.11",
"@angular/forms": "^5.2.11",
"@angular/http": "^5.2.11",
"@angular/platform-browser": "^5.2.11",
"@angular/platform-browser-dynamic": "^5.2.11",
"@angular/router": "^5.2.11",
"@types/jasmine": "2.5.38",
"@types/node": "^6.0.118",
"codelyzer": "~2.0.0",
"core-js": "^2.6.10",
"electron": "^4.2.12",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"ngx-electron": "^1.0.4",
"protractor": "~5.1.0",
"rxjs": "^5.5.12",
"ts-node": "~2.0.0",
"tslint": "~4.5.0",
"typescript": "^2.6.2",
"zone.js": "^0.8.29"
},
"engines": {
"node": "8.9.4"
}
}