-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.68 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "web-template",
"version": "1.0.1",
"main": "./dist/index.js",
"repository": "https://github.com/bpk68/web-template.git",
"author": "Rob Kendal <[email protected]>",
"license": "AGPL-3.0-or-later",
"keywords": [
"web template",
"starter project",
"template"
],
"_additional-dependencies": {
"@semantic-release/changelog": "3.0.2",
"@semantic-release/commit-analyzer": "6.1.0",
"@semantic-release/git": "7.0.7",
"@semantic-release/github": "5.2.8",
"@semantic-release/release-notes-generator": "7.1.4"
},
"dependencies": {
"@babel/polyfill": "7.12.1",
"semantic-release": "17.4.7"
},
"devDependencies": {
"@babel/cli": "7.15.7",
"@babel/core": "7.15.5",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.15.6",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "9.0.1",
"css-loader": "6.3.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.3.2",
"image-webpack-loader": "7.0.1",
"mini-css-extract-plugin": "2.3.0",
"node-sass": "6.0.1",
"optimize-css-assets-webpack-plugin": "6.0.1",
"sass-loader": "12.1.0",
"style-loader": "3.3.0",
"uglifyjs-webpack-plugin": "2.2.0",
"url-loader": "4.1.1",
"webpack": "5.53.0",
"webpack-cli": "4.8.0",
"webpack-dev-server": "4.2.1",
"webpack-merge": "5.8.0"
},
"scripts": {
"build": "webpack --config config/webpack.prod.js",
"build:dev": "webpack --config config/webpack.dev.js",
"start": "webpack-dev-server --open --config config/webpack.dev.js",
"release": "semantic-release",
"test": "echo \"Error: no test specified\" && exit 1"
}
}