forked from uberswe/golang-base-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 872 Bytes
/
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
{
"name": "golang-base-project",
"version": "1.0.0",
"description": "A base project with a golang backend ready to handle user authentication.",
"main": "index.js",
"private": true,
"scripts": {
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Markus Tenghamn (https://github.com/uberswe) m@rkus.io",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.0",
"css-loader": "^6.5.1",
"glob": "^7.2.0",
"mini-css-extract-plugin": "^2.4.5",
"node-sass": "^6.0.1",
"postcss": "^8.4.4",
"postcss-loader": "^6.2.1",
"postcss-normalize": "^10.0.1",
"purgecss-webpack-plugin": "^4.1.3",
"sass": "^1.44.0",
"sass-loader": "^12.3.0",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"bootstrap": "^5.1.3"
}
}