-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.55 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
{
"name": "nightbot-go",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:app": "npx webpack --config webpack.config.js",
"build:server": "go build cmd/main.go",
"build:all": "concurrently \"npm run build:app\" \"npm run build:server\"",
"start": "npm run build:app && PORT=5775 BASE_URL=http://localhost go run cmd/main.go",
"start:ui": "webpack-dev-server",
"start:server": "go run cmd/main.go"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielfullerton/nightbot-go.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danielfullerton/nightbot-go/issues"
},
"homepage": "https://github.com/danielfullerton/nightbot-go#readme",
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^4.5.0",
"node-sass": "^5.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"webpack": "^5.11.1"
},
"devDependencies": {
"@babel/polyfill": "^7.12.1",
"@types/axios": "^0.14.0",
"@types/react-router-dom": "^5.1.7",
"copy-webpack-plugin": "^7.0.0",
"webpack-cli": "^3.3.8",
"webpack-dev-server": "^3.11.1"
}
}