-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "snake",
"version": "0.5.0",
"description": "3D self-playing snake game",
"main": "snake.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --open --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mhluska/snake.git"
},
"keywords": [
"WebGL",
"pathfinding",
"snake",
"game"
],
"author": "Maros Hluska <mhluska@gmail.com> (https://mhluska.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/mhluska/snake/issues"
},
"homepage": "https://github.com/mhluska/snake#readme",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"three": "^0.137.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/runtime": "^7.7.7"
}
}