forked from KingBey1/cfms-website.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.51 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.51 KB
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
{
"name": "cfms-website",
"version": "1.0.0",
"description": "Website for the Canadian Federation of Medical Students (CFMS)",
"main": "gulpfile.js",
"scripts": {
"build": "npm run scaffold && cross-env NODE_ENV=production webpack -p --progress && bundle exec jekyll build --source src/site --destination serve",
"build:debug": "npm run scaffold && webpack --progress -d --verbose && bundle exec jekyll build -t",
"start": "npm run scaffold && concurrently -k -n \"WEBPACK,JEKYLL,BROWSER-SYNC\" -c \"yellow.bold,magenta.bold,blue.bold\" \"webpack -w\" \"npm run jekyll\" \"npm run browsersync \"",
"watch": "webpack -w",
"jekyll": "bundle exec jekyll build --watch --limit_posts 1 --lsi 1 --incremental --drafts --source src/site --destination serve",
"lint": "eslint",
"lint:staged": "lint-staged",
"clean": "shx rm -rf serve/",
"scaffold": "npm run clean && shx mkdir -p serve/js && shx mkdir -p serve/stylesheets",
"browsersync": "wait-on -l ./serve/index.html && browser-sync --port 4000 start -s serve -f serve --extensions html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cfms-website/cfms-website.github.io.git"
},
"keywords": [
"CFMS",
"Medicine",
"Canada",
"Advocacy",
"Medical",
"School",
"Association"
],
"author": "Pavel Yarmak",
"contributors": [
"Justin Schellenberg"
],
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/cfms-website/cfms-website.github.io/issues"
},
"homepage": "https://cfms.org",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.0.0-beta.51",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"autoprefixer": "^9.3.1",
"babel-loader": "^8.0.0-beta.0",
"babel-plugin-module-resolver": "^3.1.1",
"browser-sync": "^2.18.13",
"chai": "^4.2.0",
"concurrently": "^4.0.1",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"exports-loader": "^0.6.4",
"extract-loader": "^3.1.0",
"file-loader": "^3.0.1",
"glob": "^7.1.3",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-webpack-plugin": "^2.4.0",
"imports-loader": "^0.7.1",
"mini-css-extract-plugin": "^0.5.0",
"mocha": "^5.2.0",
"node-sass": "^4.11.0",
"nyc": "^13.1.0",
"onchange": "^5.0.2",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.15.2",
"sass-loader": "^7.1.0",
"shx": "^0.3.2",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.2",
"wait-on": "^3.2.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/runtime-corejs2": "^7.1.5",
"auth0-js": "^9.10.0",
"axios": "^0.18.0",
"core-js": "^2.5.7",
"date-fns": "^1.30.1",
"dotenv-webpack": "^1.7.0",
"firebase": "^5.5.7",
"jquery-bar-rating": "^1.2.2",
"js-cookie": "^2.2.0",
"json-style-converter": "^1.0.3",
"jsonwebtoken": "^8.4.0",
"md5": "^2.2.1",
"page": "^1.11.4",
"preact": "^8.3.1",
"preact-compat": "^3.18.4",
"preact-loading-skeleton": "^1.2.2",
"request-promise": "^4.2.2",
"vex-dialog": "^1.0.6",
"vex-js": "^3.0.0"
},
"proxy": "http://localhost:9000"
}