-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.66 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
110
111
112
113
114
{
"name": "test-project",
"version": "1.0.0",
"description": "test-project-and-nodejs",
"main": "index.js",
"scripts": {
"test": "karma start",
"dev:watch": "nodemon ./backend/src --exec babel-node",
"dev:build": "cd backend && rm -rf dist && mkdir dist && babel ./src --require babel-polyfill -d dist && node ./copy_files.js",
"webpack:watch": "NODE_ENV=development webpack -d --watch",
"webpack:build": "NODE_ENV=production webpack -p",
"eslint:backend": "eslint backend/src/**/*.js",
"eslint:frontend": "eslint public/app/*.js",
"start": "node ./backend/dist",
"heroku-postbuild": "concurrently \"npm run dev:build\" \"npm run webpack:build\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexeyKorkoza/TestProject.git"
},
"author": "Alexey Korkoza",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexeyKorkoza/TestProject/issues"
},
"homepage": "https://github.com/AlexeyKorkoza/TestProject#readme",
"dependencies": {
"angular": "^1.6.8",
"angular-animate": "^1.6.8",
"angular-google-places-autocomplete": "^0.2.9",
"angular-jwt": "^0.1.9",
"angular-loading-bar": "^0.9.0",
"angular-mocks": "^1.6.9",
"angular-responsive-tables": "^0.4.4",
"angular-simple-logger": "^0.1.7",
"angular-ui-router": "^0.4.3",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"bootstrap": "^3.3.7",
"connect-flash": "^0.1.1",
"connect-mongo": "^2.0.1",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"dumb-passwords": "^0.2.1",
"ejs": "^2.5.7",
"express": "^4.14.0",
"express-jwt": "^5.3.0",
"express-session": "^1.15.1",
"immutable": "^3.8.2",
"jquery": "^3.1.1",
"jsonwebtoken": "^7.4.1",
"leaflet": "^1.0.2",
"leaflet.markercluster": "^1.0.4",
"method-override": "^2.3.10",
"mongoose": "^4.7.4",
"morgan": "^1.7.0",
"multer": "^1.2.1",
"ng-file-upload": "^12.2.13",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"serve-favicon": "^2.4.5",
"sweetalert": "^1.1.3",
"ui-leaflet": "^1.0.3",
"winston": "^2.4.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.26.0",
"concurrently": "^3.5.1",
"css-loader": "^0.28.7",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-angular": "^3.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jasmine": "^2.9.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"font-awesome-webpack": "0.0.5-beta.2",
"font-loader": "^0.1.2",
"fs-extra": "^5.0.0",
"html-loader": "^0.5.1",
"html-minify-loader": "^1.3.0",
"html-webpack-plugin": "^2.30.1",
"html-webpack-template": "^6.1.0",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^2.0.13",
"mocha": "^5.0.5",
"node-sass": "^4.7.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.19.1",
"to-string-loader": "^1.1.5",
"uglifyjs-webpack-plugin": "^1.1.6",
"webpack": "^3.10.0"
}
}