-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.88 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.88 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
{
"name": "backbone-webpack-boilerplate",
"version": "0.1.0",
"description": "Backbone Webpack Boilerplate.",
"keywords": [
"backbone",
"webpack",
"karma",
"mocha",
"chai",
"es6",
"socket.io"
],
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.prod.js --progress --profile --colors",
"server:dev": "NODE_ENV=development node dev.server.js",
"packages:reinstall": "rm -rf node_modules && npm install",
"packages:updates": "npm-check-updates",
"packages:upgrade": "npm-check-updates -u",
"selenium:install": "selenium-standalone install",
"selenium:start": "selenium-standalone start",
"shrinkwrap:build": "npm-shrinkwrap --dev",
"shrinkwrap:remove": "rm npm-shrinkwrap.json",
"shrinkwrap:rebuild": "npm run shrinkwrap:remove && npm run packages:install && npm run shrinkwrap:build",
"test": "npm run test:unit && npm run test:integration",
"test:integration": "./tests/integration/run.js --bail",
"test:unit": "karma start",
"test:unit:live": "karma start --auto-watch --no-single-run"
},
"author": "@ryanore",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"devDependencies": {
"babel": "^5.5.8",
"babel-core": "^5.5.8",
"babel-eslint": "^3.1.15",
"babel-loader": "^5.1.4",
"babel-runtime": "^5.5.8",
"bootstrap-sass": "^3.3.5",
"chai": "^3.0.0",
"compass-mixins": "^0.12.7",
"compression-webpack-plugin": "^0.2.0",
"css-loader": "^0.21.0",
"deepmerge": "^0.2.10",
"eslint": "^0.23.0",
"eslint-loader": "^0.14.0",
"expose-loader": "^0.7.0",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"glob": "^5.0.10",
"handlebars-loader": "^1.1.4",
"handlebars-template-loader": "^0.5.4",
"html-loader": "^0.4.0",
"html-webpack-plugin": "^2.7.2",
"karma": "^0.12.36",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.12",
"karma-firefox-launcher": "^0.1.6",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.2.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-spec-reporter": "0.0.19",
"karma-webpack": "^1.5.1",
"mocha": "^2.2.5",
"nock": "^2.5.0",
"node-sass": "^3.2.0",
"null-loader": "^0.1.1",
"phantomjs": "^1.9.17",
"phantomjs-polyfill": "0.0.1",
"sass-loader": "^1.0.2",
"selenium-standalone": "^4.4.2",
"sinon": "^1.15.3",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webdriverio": "^2.4.5",
"webpack": "^1.9.11",
"webpack-dev-server": "^1.9.0",
"yadda": "^0.11.5"
},
"dependencies": {
"backbone": "^1.2.1",
"backbone.marionette": "^2.4.3",
"backbone.radio": "^1.0.2",
"backbone.syphon": "^0.6.3",
"backbone.validation": "^0.7.1",
"handlebars": "^4.0.3",
"jquery": "^2.1.4",
"socket.io-client": "^1.3.7",
"underscore": "^1.8.3"
}
}