-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.71 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
{
"name": "crawl",
"version": "1.0.0",
"description": "A dungeon crawler",
"main": "src/index.js",
"homepage": "./",
"scripts": {
"start": "webpack serve --config ./webpack.config.js --mode development",
"build": "webpack --config ./webpack.config.js --mode production",
"lint": "pretty-quick"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ztoben/crawl.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ztoben/crawl/issues"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@travi/any": "2.0.18",
"date-fns": "2.24.0",
"easystarjs": "0.4.4",
"node-pnglib": "1.5.5",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-router-dom": "5.3.0",
"rxjs": "7.3.0",
"undux": "5.2.0"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-transform-regenerator": "7.14.5",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.15.6",
"@babel/preset-react": "7.14.5",
"@hot-loader/react-dom": "17.0.1",
"babel-loader": "8.2.2",
"buffer": "6.0.3",
"css-loader": "6.3.0",
"favicons-webpack-plugin": "5.0.2",
"html-loader": "2.1.2",
"html-webpack-plugin": "5.3.2",
"husky": "7.0.2",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"process": "0.11.10",
"react-dom": "17.0.2",
"react-hot-loader": "4.13.0",
"sass": "1.41.1",
"sass-loader": "12.1.0",
"style-loader": "3.2.1",
"url-loader": "4.1.1",
"webpack": "5.53.0",
"webpack-cli": "4.8.0",
"webpack-config-utils": "2.3.1",
"webpack-dev-server": "4.2.1"
}
}