-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.75 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
56
57
58
59
60
61
{
"name": "marionette-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "karma start --single-run",
"test:watch": "karma start",
"start": "npm-run-all --parallel dev test:watch",
"dev": "webpack-dev-server --config build/development.js",
"build": "npm run clean && webpack --config build/production.js",
"clean": "rimraf dist",
"lint": "eslint src"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"backbone": "^1.3.3",
"backbone.marionette": "^3.1.0",
"backbone.syphon": "^0.7.0",
"bootstrap": "4",
"handlebars": "^4.0.6",
"jquery": "^3.1.1",
"jquery-validation": "^1.16.0",
"tether": "^1.4.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"chunk-manifest-webpack-plugin": "^1.0.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"eslint": "3.15.0",
"eslint-config-standard": "6.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "3.4.1",
"eslint-plugin-standard": "2.0.1",
"extract-text-webpack-plugin": "2",
"handlebars-loader": "^1.4.0",
"html-webpack-plugin": "^2.28.0",
"jasmine-core": "^2.5.2",
"karma": "^1.4.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^2.0.2",
"node-sass": "^4.5.0",
"npm-run-all": "^4.0.1",
"postcss-loader": "^1.2.2",
"rimraf": "^2.5.4",
"sass-loader": "^5.0.0",
"style-loader": "^0.13.1",
"webpack": "^2.2.1",
"webpack-chunk-hash": "^0.4.0",
"webpack-dev-server": "^2.3.0"
}
}