-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.77 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
98
99
100
101
{
"name": "lockbox",
"version": "0.0.1",
"description": "A securely encrypted file/message sharing service",
"author": "swimmadude66",
"license": "MIT",
"main": "dist/server/app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/TetuSecurity/Lockbox.git"
},
"keywords": [
"security",
"encryption",
"storage",
"tetu"
],
"bugs": {
"url": "https://github.com/TetuSecurity/Lockbox/issues"
},
"homepage": "https://github.com/TetuSecurity/Lockbox#readme",
"scripts": {
"start": "node dist/server/app.js",
"prebuild": "rimraf dist",
"predev": "rimraf dist",
"build": "gulp",
"dev": "gulp watch",
"clean": "rimraf dist",
"test": "mocha",
"webpack": "webpack",
"prebuild-server": "rimraf dist/server",
"build-server": "gulp compile-node",
"prebuild-client": "rimraf dist/client",
"build-client": "gulp webpack"
},
"dependencies": {
"body-parser": "1.18.2",
"compression": "1.7.2",
"cookie-parser": "1.4.3",
"dotenv": "5.0.1",
"express": "4.16.3",
"express-useragent": "1.0.12",
"morgan": "1.9.0",
"mysql": "2.15.0",
"rxjs": "6.1.0",
"spdy": "3.4.7",
"uuid": "3.2.1"
},
"devDependencies": {
"@angular/animations": "6.0.3",
"@angular/common": "6.0.3",
"@angular/compiler": "6.0.3",
"@angular/compiler-cli": "6.0.3",
"@angular/core": "6.0.3",
"@angular/forms": "6.0.3",
"@angular/http": "6.0.3",
"@angular/language-service": "6.0.3",
"@angular/platform-browser": "6.0.3",
"@angular/platform-browser-dynamic": "6.0.3",
"@angular/router": "6.0.3",
"@ngtools/webpack": "1.10.2",
"@types/node": "9.4.7",
"ajv": "6.5.0",
"autoprefixer": "8.4.1",
"browser-sync": "2.23.7",
"browser-sync-webpack-plugin": "2.2.2",
"chai": "4.1.2",
"circular-dependency-plugin": "4.4.0",
"classlist": "2.0.0",
"copy-webpack-plugin": "4.5.1",
"core-js": "2.5.7",
"css-loader": "0.28.11",
"cssnano": "3.10.0",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "1.1.11",
"font-awesome": "4.7.0",
"gulp": "3.9.1",
"gulp-typescript": "4.0.2",
"html-webpack-exclude-assets-plugin": "0.0.7",
"html-webpack-plugin": "3.2.0",
"mocha": "5.1.0",
"node-sass": "4.9.0",
"normalize-scss": "7.0.1",
"postcss-loader": "2.1.3",
"raw-loader": "0.5.1",
"reflect-metadata": "0.1.12",
"rimraf": "2.6.2",
"sass-loader": "7.0.1",
"source-map-loader": "0.2.3",
"style-loader": "0.21.0",
"tslib": "1.9.0",
"tslint": "5.10.0",
"typescript": "2.7.2",
"uglifyjs-webpack-plugin": "1.2.5",
"url-loader": "1.0.1",
"web-animations-js": "2.3.1",
"webpack": "3.11.0",
"workbox-webpack-plugin": "3.2.0",
"zone.js": "0.8.26"
}
}