-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.65 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.65 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
{
"name": "beacon",
"version": "0.1.0",
"description": "Event information display system for Xola clients",
"author": "Igor Stojadinovic <mightytroll@gmail.com>",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && webpack-dev-server --content-base dist/",
"build": "npm run build:clean && npm run build:package && npm run build:copy",
"build:clean": "rimraf ./dist && mkdirp dist/js",
"build:package": "webpack",
"build:copy": "copyfiles -u 1 ./src/index.html ./dist"
},
"dependencies": {
"backbone": "^1.3.3",
"backbone.marionette": "^3.1.0",
"jquery": "^3.1.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"chance": "^1.0.4",
"copyfiles": "^1.0.0",
"css-loader": "^0.26.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"handlebars": "^4.0.6",
"handlebars-loader": "^1.4.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"moment": "^2.17.0",
"node-schedule": "^1.2.0",
"moment-duration-format": "^1.3.0",
"nunjucks": "^3.0.0",
"nunjucks-loader": "^2.4.5",
"rimraf": "^2.5.4",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"url": "^0.11.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2",
"xola-style-loader": "git://github.com/xola/xola-style-loader.git",
"xola-template-loader": "git://github.com/xola/xola-template-loader.git"
}
}