-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.77 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
{
"name": "random-race",
"version": "0.1.0",
"description": "Random race game in which several characters run automatically",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.prod.js",
"serve": "webpack serve --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PresentKim/random-race.git"
},
"keywords": [
"html5",
"game",
"canvas"
],
"author": "PresentKim",
"license": "MIT",
"bugs": {
"url": "https://github.com/PresentKim/random-race/issues"
},
"homepage": "https://github.com/PresentKim/random-race",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.16.0",
"babel-loader": "^8.2.3",
"cname-webpack-plugin": "^3.0.0",
"core-js": "^3.19.0",
"css-loader": "^6.4.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"image-webpack-loader": "^8.0.1",
"style-loader": "^3.3.1",
"typescript": "^4.4.4",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0",
"webpack-merge": "^5.8.0",
"webpack-pwa-manifest": "^4.3.0",
"workbox-webpack-plugin": "^6.3.0"
},
"dependencies": {
"canvas-click-wrapper": "^1.0.0",
"fullscreen-wrapper": "^1.1.0"
},
"packageManager": "yarn@3.1.0"
}