-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.47 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "pendulum-web-client",
"version": "1.1.0",
"license": "GPL-3.0-or-later",
"scripts": {
"ng": "ng",
"prestart": "npm run prepare",
"start": "ng serve",
"prebuild": "npm run prepare",
"build": "ng build -prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"postinstall": "npm run prepare",
"prepare": "node prepare.js",
"prepareAll": "npm run prepare && cd electron-app && npm install && cd .. && cd mobile-app && npm install && cordova prepare",
"electron:ng:serve": "ng serve --app 1",
"electron:ng:build": "npm run prepare && ng build --app 1 --base-href ./ --output-path='./electron-app/app' --prod",
"electron:tsc": "tsc ./electron-app/src/main.ts",
"electron:start": "npm run electron:tsc && electron ./electron-app/src/main.js",
"electron:build": "npm run electron:ng:build && npm run electron:tsc && cd electron-app && electron-builder",
"electron:build:mac": "npm run electron:ng:build && npm run electron:tsc && cd electron-app && electron-builder --mac",
"electron:build:linux": "npm run electron:ng:build && npm run electron:tsc && cd electron-app && electron-builder --linux",
"electron:build:win": "npm run electron:ng:build && npm run electron:tsc && cd electron-app && electron-builder --win",
"cordova:prepare": "cd mobile-app && cordova prepare",
"cordova:ng:build": "npm run prepare && ng build --app 2 --base-href ./ --output-path='./mobile-app/www' --prod",
"cordova:build:android": "npm run cordova:ng:build && cd mobile-app && node_modules/.bin/cordova build android --release --buildConfig=build.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^5.2.10",
"@angular/common": "^5.2.10",
"@angular/compiler": "^5.2.10",
"@angular/compiler-cli": "^5.2.10",
"@angular/core": "^5.2.10",
"@angular/forms": "^5.2.10",
"@angular/http": "^5.2.10",
"@angular/platform-browser": "^5.2.10",
"@angular/platform-browser-dynamic": "^5.2.10",
"@angular/router": "^5.2.10",
"@ngrx/store": "^5.0.0",
"bulma": "^0.4.4",
"core-js": "^2.5.6",
"d3": "^3.5.17",
"dexie": "^1.5.1",
"electron": "^6.0.7",
"fs-extra": "^7.0.0",
"hammerjs": "^2.0.8",
"jdenticon": "^1.8.0",
"json2csv": "^4.3.2",
"lodash": "4.17.10",
"moment": "^2.22.1",
"ng2-img-cropper": "^0.9.0",
"ng2-nvd3": "github:PlugaruT/ng2-nvd3",
"ngx-cookie-service": "^2.1.0",
"nvd3": "^1.8.6",
"pendulums-editor": "git+https://github.com/Swing-team/pendulums-editor.git",
"rxjs": "^5.5.10",
"showdown": "^1.9.0",
"socket.io-client": "^2.1.1",
"ts-md5": "^1.2.4",
"turndown": "^5.0.3",
"turndown-plugin-gfm": "^1.0.2",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular/cli": "~1.7.3",
"@angular/compiler-cli": "^5.1.3",
"@types/jasmine": "2.5.38",
"@types/lodash": "4.14.108",
"@types/node": "~6.0.110",
"codelyzer": "~4.0.2",
"devtron": "^1.4.0",
"electron-builder": "^21.2.0",
"electron-builder-squirrel-windows": "^21.2.0",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"node-sass": "^4.9.0",
"protractor": "~5.1.0",
"sass-loader": "^7.0.1",
"ts-node": "~2.0.0",
"tslint": "~5.9.1",
"typescript": "~2.6.2"
}
}