-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.54 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
{
"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": "mkdir -p content && 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.4",
"livereload": "0.8.2",
"lory.js": "2.5.3",
"masonry-layout": "^4.2.2",
"scroll-lazy": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-loader": "^8.0.6",
"concurrently": "^5.3.0",
"css-loader": "^3.6.0",
"datocms-client": "^3.1.3",
"html-tag": "^2.0.0",
"import-glob-loader": "^1.1.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.0",
"style-loader": "^1.3.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}