-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 2.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
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": "craft-boilerplate",
"version": "1.0.0",
"description": "SNP Craft CMS Project Boilerplate",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"bs": "browser-sync start --port $npm_package_config_browser_sync_port --files public --no-open",
"clean": "rimraf public/build",
"start": "cross-env IS_BROWSER_SYNC_ENABLED=true concurrently --kill-others 'npm run watch' 'npm run bs'",
"watch": "npm run clean && cross-env WEBPACK_CONFIG_TYPE='watch' webpack --progress --colors",
"staging": "npm run clean && cross-env WEBPACK_CONFIG_TYPE='staging' webpack -p --progress --colors",
"production": "npm run clean && cross-env WEBPACK_CONFIG_TYPE='production' webpack -p --progress --colors",
"generate": "node ./generator/index.js",
"g": "npm run generate"
},
"config": {
"browser_sync_port": 38264
},
"engines": {
"node": ">=8.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/snphq/craft-boilerplate.git"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.2.2",
"babel-preset-stage-2": "^6.24.1",
"browser-sync": "^2.23.5",
"concurrently": "^3.5.1",
"cross-env": "^5.1.3",
"css-loader": "^0.27.3",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-alias": "^1.0.3",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"extract-text-webpack-plugin": "^2.1.0",
"favicons-webpack-plugin": "0.0.7",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.0",
"postcss-loader": "^2.0.10",
"rimraf": "^2.6.1",
"robotstxt-webpack-plugin": "^1.0.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.14.1",
"webpack": "^3.10.0",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"jquery": "^3.2.1",
"slick-carousel": "^1.8.1"
}
}