-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.3 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": "activesphere.github.io",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:activesphere/activesphere.github.io.git",
"author": "Saneef Ansari <[email protected]>",
"license": "UNLICENSED",
"private": true,
"scripts": {
"build:dev:js": "webpack --entry ./_scripts/index.js -o ./public/main.js --mode development",
"build:prod:js": "webpack --entry ./_scripts/index.js -o ./public/main.js --mode production",
"build:watch:js": "npm run build:dev:js -- --watch",
"build:jekyll": "bundle exec jekyll serve --host 0.0.0.0",
"prestart": "concurrently -r \"npm:build:dev:*\"",
"start": "concurrently -r \"npm:build:jekyll\" \"npm:build:watch:*\"",
"git:add-assets": "git add -f public/main.css public/main.js"
},
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"concurrently": "^4.0.1",
"css-loader": "^1.0.0",
"cssnano": "^4.1.4",
"mini-css-extract-plugin": "^0.4.3",
"postcss-import": "^12.0.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.0.10",
"style-loader": "^0.23.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"devDependencies": {
"pre-commit": "^1.2.2"
},
"pre-commit": [
"build:prod:js",
"git:add-assets"
]
}