-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.07 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.07 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
{
"name": "leaderboard",
"version": "1.0.0",
"description": "The leaderboard website displays scores submitted by different players. It also allows you to submit your score. All data is preserved to the external Leaderboard API service. The project is setup with webpack and ES6 features",
"main": "index.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"serve": "webpack serve",
"start": "webpack serve --open",
"deploy": "webpack && gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bornittah/LeaderBoard.git"
},
"author": "Agasha Bornittah",
"license": "ISC",
"bugs": {
"url": "https://github.com/Bornittah/LeaderBoard/issues"
},
"homepage": "https://github.com/Bornittah/LeaderBoard#readme",
"devDependencies": {
"css-loader": "^6.7.1",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
}
}