-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "snake-game",
"version": "1.0.0",
"description": "Classic snake game built with vanilla Javascript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.js",
"start": "webpack-dev-server --config webpack.config.js --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ealmario/snake-game.git"
},
"keywords": [
"vanilla",
"javascript",
"game",
"html5",
"snake",
"game"
],
"author": "Eli Almario",
"license": "ISC",
"bugs": {
"url": "https://github.com/ealmario/snake-game/issues"
},
"homepage": "https://ealmario.github.io/snake-game/",
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"raw-loader": "^4.0.2",
"terser-webpack-plugin": "^5.3.1",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/runtime": "^7.17.2"
}
}