-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "finestra-wedding",
"version": "0.0.1",
"description": "Wedding application",
"main": "index.js",
"repository": "[email protected]:charlybrown03/finestraweb.git",
"scripts": {
"clean": "rm -rf dist",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --debug --devtool source-map --output-pathinfo",
"start:prod": "webpack-dev-server",
"build": "yarn run clean && webpack",
"build:prod": "yarn run clean && NODE_ENV=production webpack --config webpack-prod.config.js -p"
},
"author": "Carlos Moreno",
"license": "ISC",
"dependencies": {
"backbone": "^1.3.3",
"backbone.marionette": "^3.3.1",
"backbone.routefilter": "^1.0.0",
"bootstrap": "4.0.0-alpha.6",
"echarts": "^3.6.2",
"fs": "^0.0.1-security",
"google-fonts": "^1.0.0",
"google-fonts-webpack-plugin": "^0.4.0",
"handlebars": "^4.0.7",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"sass-mq": "^3.3.2",
"select2": "^4.0.3",
"tether": "^1.4.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"change-extension-plugin": "^1.1.2",
"compression-webpack-plugin": "^1.0.0",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "2.1.2",
"file-loader": "^0.11.2",
"handlebars-loader": "^1.5.0",
"html-webpack-plugin": "^2.28.0",
"image-webpack-loader": "^3.3.1",
"node-sass": "^4.5.2",
"normalize-scss": "^6.0.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5"
}
}