-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
{
"name": "try-webpack",
"version": "2.0.0",
"description": "a Component based, multiple pages web application scaffold, created with jQuery, Handlebars.js, Bootstrap and some aralejs",
"main": "index.js",
"scripts": {
"vendor": "webpack --config configs/webpack.vendor.js",
"build": "webpack --config configs/webpack.config.development.js --colors --progress",
"listen": "nodemon ./app.js",
"release": "webpack --config configs/webpack.config.production.js --colors --progress"
},
"author": "j-sparrow",
"license": "ISC",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"popper.js": "*",
"bootstrap": "^4.0.0",
"bootstrap-datetime-picker": "^2.4.4",
"handlebars": "^4.0.11",
"handlebars-layouts": "^3.1.4",
"handlebars-loader": "^1.6.0",
"jquery": "^3.3.0",
"lodash": "^4.17.4",
"moment": "^2.20.1",
"sass-loader": "^6.0.6"
},
"devDependencies": {
"clean-webpack-plugin": "^0.1.17",
"colors": "^1.1.2",
"css-loader": "^0.28.9",
"csv-loader": "^2.1.1",
"debug": "^3.1.0",
"eslint": "^4.16.0",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"nodemon": "^1.14.11",
"style-loader": "0.19.1",
"uglifyjs-webpack-plugin": "1.1.6",
"webpack": "^3.10.0",
"webpack-merge": "^4.1.0",
"whatwg-fetch": "^2.0.3",
"xml-loader": "^1.2"
}
}