-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.43 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
102
103
104
105
106
107
108
109
{
"name": "app",
"version": "0.0.0",
"private": true,
"scripts": {
"webpack-dev": "cross-env NODE_ENV=development webpack --mode development",
"webpack-prod": "cross-env NODE_ENV=production webpack --mode production",
"build": "npm run build:prod",
"build:dev": "webpack-dev-server",
"build:prod": "npm run build:clean && ngc && npm run webpack-prod && npm run build:clean",
"build:clean": "del-cli 'client/**/*.js' 'client/**/*.js.map' 'client/**/*.ngsummary.json' 'client/**/*.metadata.json' 'client/**/**/*.ngfactory.ts' 'client/**/*.ngstyle.ts' 'client/**/*.shim.ts'",
"start": "nodemon -L -V --ignore ./client ./bin/www",
"test": "NODE_ENV=test mocha --recursive tests/"
},
"engines": {
"node": "10.x"
},
"dependencies": {
"@angular/animations": "~7.0",
"@angular/common": "~7.0",
"@angular/compiler": "~7.0",
"@angular/compiler-cli": "^7.2.15",
"@angular/core": "~7.0",
"@angular/forms": "~7.0",
"@angular/http": "~7.0",
"@angular/platform-browser": "~7.0",
"@angular/platform-browser-dynamic": "~7.0",
"@angular/platform-server": "~7.0",
"@angular/router": "~7.0",
"@angular/upgrade": "~7.0",
"@fortawesome/fontawesome-free": "^5.8.2",
"@ng-bootstrap/ng-bootstrap": "^4.1.3",
"@types/activestorage": "^5.2.2",
"@types/lodash": "^4.14.132",
"activestorage": "^5.2.3",
"angular-sortablejs": "^2.7.0",
"aws-sdk": "^2.463.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"bootstrap": "^4.3.1",
"cleave.js": "^1.5.0",
"connect-flash": "^0.1.1",
"cookie-session": "^1.3.3",
"core-js": "~2.5",
"debug": "~2.6.9",
"dotenv": "^6.2.0",
"ejs": "~2.5.7",
"email-templates": "^5.1.0",
"express": "~4.16.0",
"express-ejs-layouts": "^2.5.0",
"express-fileupload": "^1.1.4",
"fs-extra": "^8.1.0",
"http-errors": "~1.6.2",
"i18n": "^0.8.3",
"inflection": "^1.12.0",
"jquery": "^3.4.1",
"lodash": "^4.17.15",
"mime-types": "^2.1.24",
"mkdirp": "^0.5.1",
"morgan": "~1.9.0",
"mv": "^2.1.1",
"node-fetch": "^2.6.0",
"nodemon": "^1.19.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.11.0",
"rxjs": "~6.3",
"sequelize": "^5.18.1",
"sequelize-cli": "^5.5.1",
"sequelize-paginate": "leandrofinger/sequelize-paginate#e74f00ae91139798065a448cef69b2f557b58837",
"sortablejs": "^1.9.0",
"uuid": "^3.3.2",
"xlsx": "^0.15.1",
"zone.js": "~0.8"
},
"devDependencies": {
"@rush/webpack": "^7.3.6",
"@types/core-js": "~2.5",
"@types/node": "~10.12",
"angular-router-loader": "~0.8",
"angular2-template-loader": "~0.6",
"awesome-typescript-loader": "~5.2",
"babel-core": "~6.26",
"babel-loader": "~7.1",
"babel-preset-env": "~1.7",
"babel-preset-es2015": "~6.24",
"clean-webpack-plugin": "~0.1",
"cross-env": "~5.2",
"css-loader": "~1.0",
"cssnano": "~4.1",
"del-cli": "~1.1",
"foreman": "^3.0.1",
"html-loader": "~0.5",
"html-webpack-plugin": "~3.2",
"mocha": "^7.0.1",
"node-sass": "~4.9",
"optimize-css-assets-webpack-plugin": "~5.0",
"sass-loader": "~7.1",
"style-loader": "~0.23",
"to-string-loader": "~1.1",
"typescript": "~3.1",
"uglifyjs-webpack-plugin": "~2.0",
"webpack": "~4.29",
"webpack-bundle-tracker": "^0.4.2-beta",
"webpack-cli": "~3.2",
"webpack-dev-server": "^3.4.1",
"webpack-merge": "~4.2"
}
}