-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.22 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.22 KB
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
{
"name": "kwdstudio",
"version": "0.0.1",
"scripts": {
"start": "npm-run-all --parallel 'start:jekyll' 'start:webpack-dev-server'",
"start:jekyll": "bundle exec jekyll serve --config \"_config.yml,_config_dev.yml\"",
"start:webpack-dev-server": "webpack-dev-server",
"prebuild": "rm -rf javascripts stylesheets",
"build": "NODE_ENV=production webpack --mode production",
"postinstall": "mkdir -p .git/hooks && cp hooks/* .git/hooks/",
"build:staging": "bundle exec jekyll build --config \"_config.yml,_config_staging.yml\""
},
"author": "Oktavilla",
"license": "UNLICENSED",
"private": true,
"dependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"autoprefixer": "~6.7.6",
"css-loader": "~3.4.2",
"mini-css-extract-plugin": "^2.9.2",
"normalize.css": "^8.0.1",
"repetitivo": "https://github.com/pliroco/repetitivo#master",
"sass": "^1.86.0",
"sass-loader": "~8.0.2",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"webpack-dev-server": "^5.2.0"
}
}