forked from AdaGold/backbone-review
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
34 lines (34 loc) · 1.02 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
{
"name": "backbone-baseline",
"version": "1.0.0",
"description": "Ada's baseline for Backbone.js projects using jQuery, webpack, babel, and jasmine",
"main": "./bin/app.bundle.js",
"scripts": {
"start": "webpack-dashboard -- webpack-dev-server",
"test": "jasmine"
},
"author": "Ada Developers Academy <[email protected]>",
"license": "MIT",
"repository": "AdaGold/backbone-baseline",
"bugs": {
"url": "https://github.com/AdaGold/backbone-baseline/issues"
},
"homepage": "https://github.com/AdaGold/backbone-baseline#readme",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-module-resolver": "^2.3.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"backbone": "^1.3.3",
"jasmine": "^2.5.2",
"jasmine-expect": "^3.0.1",
"jquery": "^3.1.1",
"webpack": "^1.13.3",
"webpack-dashboard": "^0.2.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"babel-polyfill": "^6.16.0"
}
}