-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 KB
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
{
"author": "Ivan Alonso (@neverbot)",
"name": "demo-asteroids",
"description": "Asteroids clone, demo of the okinawa.js engine",
"version": "3.1.18",
"homepage": "http://dev.neverbot.com/okinawa.js",
"repository": {
"type": "git",
"url": "git@github.com:okinawa-dev/demo-asteroids.git"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"babel-loader": "^9.1.3",
"connect": "^3.7.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"serve-static": "^1.15.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"optionalDependencies": {},
"scripts": {
"lint": "npx eslint . --ext js,json",
"lint:fix": "npx eslint . --ext js,json --fix",
"build": "npx webpack --config .webpack.config.js --mode=production && cp -rf demo-asteroids.js assets index.html style.css build/",
"start": "node server.js"
},
"dependencies": {
"okinawa.js": "^3.1.18"
}
}