-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
97 lines (97 loc) · 3.98 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "mindstream",
"version": "1.6.2",
"license": "GPL-3.0-or-later",
"repository": "https://github.com/xuhcc/mindstream",
"private": true,
"main": "main.js",
"scripts": {
"postinstall": "./scripts/copy-fonts.js",
"ng": "ng",
"web": "./scripts/web-backend.js & ng serve",
"web-release": "ng build --prod && cp scripts/web-backend.js platforms/web/index.js",
"start": "npm run web",
"build-icons": "tns resources generate icons artwork/icon.png",
"build-splashes": "tns resources generate splashes artwork/feature.png --background \"#333333\"",
"android": "tns debug android --no-hmr",
"android-release": "tns build android --release --clean --key-store-path /dev/null --key-store-alias NULL --key-store-password NULL --key-store-alias-password NULL",
"ios": "tns debug ios",
"ios-unsigned": "./scripts/ios-unsigned.sh",
"lint": "eslint 'src/**/*.ts' && stylelint 'src/**/*.scss'",
"test": "ng test --browsers jsdom",
"clean": "rm -rf platforms",
"version": "./scripts/check-changelog.js && ./scripts/bump-version.js && git add -A"
},
"dependencies": {
"@angular/animations": "~10.1.0",
"@angular/common": "~10.1.0",
"@angular/compiler": "~10.1.0",
"@angular/core": "~10.1.0",
"@angular/forms": "~10.1.0",
"@angular/platform-browser": "~10.1.0",
"@angular/platform-browser-dynamic": "~10.1.0",
"@angular/router": "~10.1.0",
"@nativescript/angular": "~10.1.0",
"@nativescript/core": "~7.2.1",
"@nativescript/imagepicker": "~1.0.0",
"@nativescript/iqkeyboardmanager": "~2.0.0",
"@nativescript/webpack": "~3.0.8",
"@nstudio/nativescript-floatingactionbutton": "~3.0.4",
"@nstudio/nativescript-pulltorefresh": "~3.0.1",
"@openfonts/pt-sans_all": "1.44.0",
"@openfonts/vollkorn_all": "1.43.0",
"@triniwiz/nativescript-toasty": "~4.0.3",
"angular-mydatepicker": "~0.10.3",
"core-js": "~2.6.12",
"express": "~4.17.1",
"jstodotxt": "0.10.0",
"markdown-it": "~10.0.0",
"markdown-it-link-attributes": "~3.0.0",
"material-design-icons-iconfont": "~5.0.1",
"moment": "~2.24.0",
"nativescript-appversion": "~1.4.2",
"nativescript-foss-sidedrawer": "file:plugins/nativescript-foss-sidedrawer-2.0.0.tgz",
"nativescript-mediafilepicker": "~2.0.16",
"nativescript-modal-datetimepicker": "~2.1.5",
"nativescript-permissions": "~1.3.7",
"ngx-smart-modal": "~7.2.1",
"normalize.css": "~8.0.1",
"reflect-metadata": "~0.1.12",
"rxjs": "~6.6.3",
"thenby": "~1.3.0",
"tslib": "1.10.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-builders/custom-webpack": "~8.2.0",
"@angular-devkit/build-angular": "~0.1002.0",
"@angular/cli": "~10.2.0",
"@angular/compiler-cli": "~10.2.3",
"@nativescript/android": "7.0.1",
"@nativescript/schematics": "~10.0.2",
"@nativescript/types": "~7.0.4",
"@types/jasmine": "~3.5.0",
"@types/node": "~12.19.8",
"@typescript-eslint/eslint-plugin": "~2.18.0",
"@typescript-eslint/parser": "~2.18.0",
"eslint": "~6.3.0",
"eslint-config-standard": "~14.1.0",
"eslint-plugin-import": "~2.18.2",
"eslint-plugin-jasmine": "~2.10.1",
"eslint-plugin-node": "~9.2.0",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-standard": "~4.0.1",
"jsdom": "~15.1.1",
"karma": "~6.2.0",
"karma-jasmine": "~3.0.1",
"karma-jsdom-launcher": "~8.0.2",
"karma-mocha-reporter": "~2.2.5",
"node-sass": "~4.14.1",
"stylelint": "~13.12.0",
"stylelint-config-sass-guidelines": "~8.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~3.9.0",
"webpack-cli": "~3.3.12"
}
}