-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
{
"name": "farming-sim",
"version": "1.0.0",
"description": "My first game - a learning experience",
"main": "src/main.ts",
"scripts": {
"build": "yarn build:dev",
"build:dev": "NODE_ENV=development webpack",
"build:prod": "NODE_ENV=production webpack",
"dev": "NODE_ENV=development webpack-dev-server --port 5000",
"prod": "NODE_ENV=production webpack-dev-server",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gingerbenw/farming-sim.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gingerbenw/farming-sim/issues"
},
"homepage": "https://github.com/gingerbenw/farming-sim#readme",
"dependencies": {
"phaser": "^3.50.1",
"phaser3-plugin-isometric": "^0.0.7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"copy-webpack-plugin": "^6.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"ts-loader": "^7.0.5",
"typescript": "^4.1.3",
"typescript-tslint-plugin": "^0.5.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}