-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3 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
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
{
"name": "chwat",
"version": "1.0.1",
"description": "Remake of a Commodore 64 adventure platformer",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.prod.js"
},
"keywords": [],
"author": "Piotr Praga",
"license": "ISC",
"engines": {
"node": "12.x",
"npm": "6.x",
"yarn": "1.x"
},
"dependencies": {
"hammerjs": "2.0.8",
"lodash": "4.17.15",
"lucendi": "1.0.9",
"moment": "2.25.3",
"npm": "6.14.5",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "7.2.0",
"redux": "4.0.5",
"redux-sounds": "3.1.1",
"redux-thunk": "2.3.0",
"sat": "0.8.0",
"tiled-platformer-lib": "1.8.1",
"tmx-tiledmap": "1.1.7"
},
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/plugin-proposal-class-properties": "7.0.0",
"@babel/plugin-proposal-decorators": "7.0.0",
"@babel/plugin-proposal-do-expressions": "7.0.0",
"@babel/plugin-proposal-export-default-from": "7.0.0",
"@babel/plugin-proposal-export-namespace-from": "7.0.0",
"@babel/plugin-proposal-function-bind": "7.0.0",
"@babel/plugin-proposal-function-sent": "7.0.0",
"@babel/plugin-proposal-json-strings": "7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.0.0",
"@babel/plugin-proposal-numeric-separator": "7.0.0",
"@babel/plugin-proposal-optional-chaining": "7.0.0",
"@babel/plugin-proposal-pipeline-operator": "7.0.0",
"@babel/plugin-proposal-throw-expressions": "7.0.0",
"@babel/plugin-syntax-decorators": "7.0.0",
"@babel/plugin-syntax-dynamic-import": "7.0.0",
"@babel/plugin-syntax-import-meta": "7.0.0",
"@babel/plugin-transform-runtime": "7.0.0",
"@babel/polyfill": "7.0.0",
"@babel/preset-env": "7.0.0",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"@babel/runtime-corejs2": "7.0.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.0.0",
"babel-preset-react-hmre": "1.1.1",
"clean-webpack-plugin": "3.0.0",
"cross-env": "7.0.2",
"css-loader": "3.5.3",
"eslint": "7.0.0",
"eslint-loader": "4.0.2",
"eslint-plugin-flowtype": "5.0.3",
"eslint-plugin-mocha": "7.0.0",
"eslint-plugin-react": "7.20.0",
"file-loader": "6.0.0",
"html-webpack-plugin": "4.3.0",
"image-webpack-loader": "6.0.0",
"loader-utils": "2.0.0",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.14.1",
"postcss-loader": "3.0.0",
"postcss-preset-env": "6.5.0",
"regenerator-runtime": "0.13.5",
"rimraf": "3.0.2",
"sass-loader": "8.0.2",
"style-loader": "1.2.1",
"url-loader": "4.1.0",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0",
"webpack-merge": "4.2.2",
"xml-loader": "1.2.1"
}
}