-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.39 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
{
"name": "creative-inc",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build:jekyll": "JEKYLL_ENV=production bundle exec jekyll build",
"build:assets": "NODE_ENV=production webpack -p --config webpack.prod.config.js",
"build:datocms": "dato dump",
"build": "yarn build:datocms && yarn build:jekyll && yarn build:assets",
"start:assets": "NODE_ENV=development webpack --watch --config webpack.dev.config.js",
"start:jekyll": "bundle exec jekyll server --incremental",
"start:livereload": "livereload public -p 5678 -d",
"start:datocms": "dato dump --watch",
"start": "dato check && concurrently -p \"[{name}]\" -c \"blue,red,green,yellow\" -k -n jekyll,webpack,livereload,datocms \"yarn start:jekyll\" \"yarn start:assets\" \"yarn start:livereload\" \"yarn start:datocms\""
},
"dependencies": {
"imagesloaded": "^4.1.1",
"lory.js": "^2.2.1",
"masonry-layout": "^4.1.1",
"scroll-lazy": "^1.0.3"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.18.0",
"concurrently": "^3.1.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^1.0.1",
"import-glob-loader": "^1.1.0",
"livereload": "^0.6.0",
"node-sass": "^3.13.0",
"sass-loader": "^4.0.2",
"sort-by": "^1.1.1",
"style-loader": "^0.13.1",
"webpack": "^1.14.0"
}
}