This repository was archived by the owner on Dec 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.32 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.32 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
{
"name": "website-2017t",
"version": "1.0.0",
"description": "This repository will store the transition website for HackMerced 2017F. It is written in Python with the Flask framewrork and will be used to server some basic files as well as enable a microservice to list jobs from our internal filesystem. This readme will be updated on the full uses of this website and how to use it.",
"main": "index.js",
"dependencies": {
"gulp": "^3.9.1",
"jquery": "^3.2.1",
"normalize.css": "^5.0.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"gulp": "^3.9.1",
"gulp-add-src": "^0.2.0",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.1",
"gulp-sass": "^3.1.0",
"gulp-util": "^3.0.8",
"merge-stream": "^1.0.1"
},
"scripts": {
"test": "",
"setup": "pip install -r py_deps.txt && npm install -g gulp && npm install && npm run build && python ./tools/build.py",
"build": "gulp production",
"start": "python index.py",
"jobs": "python ./tools/pullJobs.py",
"gulp": "gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HackMerced/website-2017t.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/HackMerced/website-2017t/issues"
},
"homepage": "https://github.com/HackMerced/website-2017t#readme"
}