-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "heapsgooddev-site",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run watch:webpack:dev",
"watch:webpack:dev": "webpack-dev-server --config ./webpack.config.js --mode=development",
"build": "npm run build:clean && npm run build:webpack:prod",
"build:webpack:prod": "cross-env NODE_ENV=prod webpack --config ./webpack.config.js --mode=production",
"build:clean": "rimraf ./dist",
"serve": "serve -s -p 7134 ./dist",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"deploy": "npm run build && npm run deploy:aws",
"deploy:aws": "aws s3 sync dist/ s3://heapsgood.dev --profile heapsgood"
},
"author": "heapsgooddev",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"autoprefixer": "^9.3.1",
"babel-loader": "^8.0.5",
"background-image-fade-in": "^0.4.4",
"commitizen": "^3.0.5",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"cz-conventional-changelog": "^2.1.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.5.0",
"mini-css-extract-plugin": "^0.4.4",
"path": "^0.12.7",
"postcss-custom-properties": "^8.0.9",
"postcss-loader": "^3.0.0",
"postcss-modules": "^1.4.1",
"rimraf": "^2.6.2",
"script-ext-html-webpack-plugin": "^2.1.3",
"serve": "^10.1.1",
"style-ext-html-webpack-plugin": "^4.0.1",
"style-loader": "^0.23.1",
"validate-commit-msg": "^2.14.0",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
},
"dependencies": {
"@babel/runtime": "^7.2.0"
}
}