-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.52 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
{
"name": "schedule",
"version": "1.0.0",
"description": "requires: - node.js - bower",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel deps:wire style sync",
"start:prod": "npm-run-all deps:install deps:wire style:prod server",
"bundle": "npm-run-all concat style:bundle",
"concat": "node bin/bundle.js",
"deps:wire": "node bin/deps.js",
"deps:install": "bower i",
"server": "node app.js",
"style": "node-sass --error-bell --output-style expanded --watch src/style.scss public/index.css",
"style:bundle": "node-sass --output-style compressed src/style.scss dist/_nyffCalendar.scss",
"style:prod": "node-sass --output-style compressed src/style.scss public/index.css",
"sync": "browser-sync start --server --no-notify --files 'index.html' 'public/index.css' 'public/*.js'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"browser-sync": "^2.13.0",
"concatenate-files": "^0.1.1",
"mac-open": "^0.1.3",
"rimraf": "^2.5.4",
"uglify-js": "^2.7.0"
},
"dependencies": {
"bower": "^1.7.9",
"express": "^4.14.0",
"lodash": "^4.13.1",
"node-sass": "^3.8.0",
"npm-run-all": "^2.3.0",
"wiredep": "^4.0.0"
},
"bin": {
"schedule": "deps.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patronage/filmlinc-schedule.git"
},
"bugs": {
"url": "https://github.com/patronage/filmlinc-schedule/issues"
},
"homepage": "https://github.com/patronage/filmlinc-schedule#readme"
}