-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.77 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.77 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
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "tinyking",
"version": "1.0.0",
"description": "Tiny King game",
"private": true,
"scripts": {
"test": "npx jest",
"watch": "npx jest --watch",
"build": "webpack --config webpack.prod.js",
"start": "webpack serve --config webpack.dev.js --progress"
},
"jest": {
"moduleNameMapper": {
"game/(.*)": "<rootDir>/src/game/$1"
}
},
"repository": {
"type": "git",
"url": "https://github.com/chrismdp/tinyking.git"
},
"author": "Chris Parsons <chris@revelationgames.co>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/chrismdp/tinyking/issues"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"defaults"
]
}
}
],
"@babel/preset-react"
]
},
"homepage": "https://github.com/chrismdp/tinyking#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"chokidar": "^3.5.2",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.16.1",
"css-loader": "^6.2.0",
"csv-loader": "^3.0.3",
"eslint": "^7.32.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"git-revision-webpack-plugin": "^5.0.0",
"glob-parent": "^6.0.1",
"html-webpack-plugin": "^5.3.2",
"html-webpack-root-plugin": "git+https://github.com/jeremy-hunter/html-webpack-root-plugin.git#patch-1",
"jest": "^27.0.6",
"node-notifier": "^10.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.37.5",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"webpack": "^5.50.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^5.15.4",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@popperjs/core": "^2.9.3",
"@tweenjs/tween.js": "^18.6.4",
"honeycomb-grid": "^3.1.8",
"immer": "^9.0.6",
"json-rules-engine-simplified": "^0.1.17",
"mersenne-twister": "^1.1.0",
"node-forge": ">=1.3.0",
"node-polyglot": "^2.4.0",
"pixi-viewport": "^4.34.4",
"pixi.js": "^6.4.2",
"react-draggable": "^4.4.3",
"react-ga": "^3.3.0",
"react-polyglot": "^0.7.2",
"react-router-dom": "^5.2.0",
"selectn": "^1.1.2",
"simplex-noise": "^2.4.0"
}
}