forked from HackFSU/hackfsu-2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.89 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
{
"name": "hackfsu.com",
"version": "4.0.0",
"homepage": "hackfsu.com",
"description": "hackfsu.com",
"repository": {
"type": "git",
"url": "https://github.com/HackFSU/hackfsu_com.git"
},
"bugs": {
"url": "https://github.com/HackFSU/hackfsu_com/issues"
},
"main": "",
"scripts": {
"stats": "./venv/bin/python3.5 manage.py runscript print_totals > scripts/data/stats.txt --traceback",
"gulp-bower": "gulp bower",
"gulp-build": "gulp build",
"gulp-html-watch": "gulp html:watch",
"gulp-css-watch": "gulp css:watch",
"gulp-js-watch": "gulp js:watch",
"gulp-watch": "gulp watch",
"gulp-demo": "gulp demo",
"gulp-clean": "gulp clean",
"build": "npm run gulp-clean; npm run gulp-build",
"npm-install": "npm install",
"pip-install": "./venv/bin/pip3.5 install -r ./requirements.txt",
"django-collectstatic": "rm -rf static_collected; ./venv/bin/python3.5 manage.py collectstatic --noinput",
"update": "npm run npm-install; npm run pip-install; npm run build; npm run django-collectstatic",
"watch": "npm run gulp-bower; concurrently --prefix \"[{name}]\" --names \"HTML,JS,CSS\" --kill-others \"npm run gulp-html-watch\" \"npm run gulp-js-watch\" \"npm run gulp-css-watch\"",
"demo": "npm run gulp-bower; concurrently --prefix \"[{name}]\" --names \"BUILD,SERVER\" --kill-others \"npm run watch\" \"npm run gulp-demo\""
},
"author": "HackFSU",
"license": "Apache-2.0",
"ignore": [
"*/**"
],
"dependencies": {
"fs-extra": "^1.0.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-bower": "0.0.13",
"gulp-clean-css": "^2.3.2",
"gulp-header": "^1.8.8",
"gulp-pug": "^3.1.0",
"gulp-sass": "^2.3.2",
"gulp-sourcemaps": "^2.2.0",
"gulp-uglify": "^2.0.0",
"moment": "^2.17.1"
},
"devDependencies": {
"concurrently": "^3.1.0",
"express": "^4.14.0",
"morgan": "^1.7.0"
}
}