-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.49 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
{
"name": "craft-webpack-project-boilerplate",
"version": "1.0.0",
"description": "MilesHerndon's Craft CMS Webpack Project Boilerplate npm dependencies",
"main": "index.js",
"scripts": {
"ds_store": "find . -name '.DS_Store' -type f -delete",
"clean": "npm run ds_store && rimraf public/build",
"watch": "npm run clean && WEBPACK_CONFIG_TYPE='watch' webpack --progress --colors",
"build": "npm run clean && WEBPACK_CONFIG_TYPE='build' webpack -p --progress --colors",
"launch": "npm run clean && WEBPACK_CONFIG_TYPE='launch' webpack -p --progress --colors"
},
"repository": {
"type": "git",
"url": "https://milesdesign.git.beanstalkapp.com/craft-webpack-project-boilerplate.git"
},
"author": "MilesHerndon",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.2.2",
"copy-webpack-plugin": "^4.2.3",
"css-loader": "^0.27.3",
"extract-text-webpack-plugin": "^2.1.0",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.0",
"postcss-loader": "^2.0.6",
"rimraf": "^2.6.1",
"robotstxt-webpack-plugin": "^1.0.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.14.1",
"url-loader": "^0.6.2",
"webpack": "^2.2.1",
"webpack-merge": "^4.1.0",
"webpack-notifier": "^1.5.0"
},
"dependencies": {
"jquery": "^3.2.1",
"picturefill": "^3.0.2",
"svg4everybody": "^2.1.7"
}
}