-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.75 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
53
54
55
56
57
58
59
60
{
"name": "animalearnia",
"version": "1.0.0",
"description": "RPG level based game where the objective of each level is to learn different types of animals. The game uses game based learning principles.",
"main": "index.js",
"scripts": {
"build": "webpack -p",
"start": "webpack-dev-server",
"deploy": "webpack -p && gh-pages -d build",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts,tsx}' --quiet --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomasklim/animalearnia.git"
},
"keywords": [
"phaser",
"game",
"game",
"based",
"e-learning"
],
"author": "Tomáš Klíma",
"license": "ISC",
"bugs": {
"url": "https://github.com/tomasklim/animalearnia/issues"
},
"homepage": "https://github.com/tomasklim/animalearnia#readme",
"dependencies": {
"phaser": "^3.22.0"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/node": "^13.1.2",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}