-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 882 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": "farming-sim-no-mouse-hackathon",
"version": "1.0.0",
"description": "A vanilla JS application to simulate farming in a 2D space",
"main": "index.js",
"dependencies": {
"webpack-dev-server": "^3.11.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"file-loader": "^6.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uzair-ashraf/farming-sim-no-mouse-hackathon.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/uzair-ashraf/farming-sim-no-mouse-hackathon/issues"
},
"homepage": "https://github.com/uzair-ashraf/farming-sim-no-mouse-hackathon#readme"
}