-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 3.41 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
{
"name": "stevens-scheduler",
"version": "1.0.0",
"description": "An updated Stevens Scheduler. 3.0?",
"main": "app.js",
"engines": {
"node": "7.4.0"
},
"scripts": {
"dev-build": "webpack",
"build": "cross-env NODE_ENV=production webpack",
"start": "node app.js",
"start-dev": "cross-env NODE_ENV=development node app.js",
"start-prod": "cross-env NODE_ENV=production node app.js",
"test": "cross-env NODE_ENV=testing mocha --reporter=nyan ./test/**/*.js",
"lint-tests": "eslint --fix --ext .js test/** ",
"lint": "eslint --fix --ext .js lib/** static/** ",
"clean": "rm -rf dist logs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fbueti/stevens-scheduler-2.0.git"
},
"author": "Francesca Bueti, Austin Cawley-Edwards, Gregory Johnson, Michael Langford",
"license": "ISC",
"bugs": {
"url": "https://github.com/fbueti/stevens-scheduler-2.0/issues"
},
"homepage": "https://github.com/fbueti/stevens-scheduler-2.0#readme",
"dependencies": {
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"connect-ensure-login": "^0.1.1",
"connect-flash": "^0.1.1",
"connect-mongo": "^1.3.2",
"cors": "^2.8.3",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"express-session": "^1.15.2",
"express-winston": "^2.3.0",
"http-errors": "^1.6.1",
"http-status-codes": "^1.1.6",
"mongoose": "^4.9.3",
"mongoose-type-url": "^1.0.2",
"passport": "^0.3.2",
"passport-google-oauth20": "^1.0.0",
"pug": "^2.0.0-beta11",
"request-promise-native": "^1.0.3",
"require-directory": "^2.1.1",
"winston": "^2.3.1",
"xml-to-json-promise": "0.0.3"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-loader": "^7.0.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.4.3",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-http": "^3.0.0",
"cross-env": "^4.0.0",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-airbnb-es5": "^1.1.0",
"eslint-plugin-disable": "^0.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-vue": "^2.0.1",
"eslint-to-editorconfig": "^1.2.0",
"file-loader": "^0.11.1",
"font-awesome": "^4.7.0",
"font-awesome-webpack": "0.0.5-beta.2",
"image-webpack-loader": "^3.3.1",
"imagemin": "^5.2.2",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"mocha": "^3.2.0",
"moment": "^2.18.1",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"progress-bar-webpack-plugin": "^1.9.3",
"sass-loader": "^6.0.3",
"spinkit": "^1.2.5",
"stats-webpack-plugin": "^0.6.0",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"vue": "^2.3.0",
"vue-async-computed": "^3.0.1",
"vue-clipboards": "^0.2.6",
"vue-js-modal": "^1.0.21",
"vue-moment": "^2.0.2",
"vue-resource": "^1.3.1",
"webpack": "^2.5.0",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0"
}
}