-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.5 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
{
"name": "creative-inc",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build:hugo": "NODE_ENV=production hugo --config config.prod.toml",
"build:assets": "NODE_ENV=production webpack -p --config webpack.prod.config.js",
"build:datocms": "dato dump",
"build": "npm run build:datocms && npm run build:hugo && npm run build:assets",
"start:assets": "NODE_ENV=development webpack-dev-server --open --content-base public/ --config webpack.dev.config.js",
"start:hugo": "hugo -w --config config.dev.toml",
"start:datocms": "dato dump --watch",
"start:livereload": "livereload public -e 'html' -p 5678",
"start": "dato check && concurrently -p \"[{name}]\" -c \"blue,red,green,yellow\" -k -n hugo,webpack,livereload,dato \"npm run start:hugo\" \"npm run start:assets\" \"npm run start:livereload\" \"npm run start:datocms\""
},
"dependencies": {
"imagesloaded": "^4.1.1",
"livereload": "^0.6.0",
"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",
"datocms-client": "^0.3.36",
"extract-text-webpack-plugin": "^1.0.1",
"html-tag": "^0.2.1",
"import-glob-loader": "^1.1.0",
"node-sass": "^3.13.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
}
}