-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 738 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 738 Bytes
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
{
"name": "pixel",
"version": "1.0.0",
"author": "Brandon Asuncion <[email protected]> (https://brandonasuncion.tech)",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/brandonasuncion/Pixel.git"
},
"main": "src/PixelServer.js",
"scripts": {
"test": "node_modules/jshint/bin/jshint ./src/PixelServer.js",
"start": "node src/PixelServer.js",
"herokulocal": "heroku local web"
},
"engines": {
"node": "v16.15.1"
},
"dependencies": {
"express": "^4.22.1",
"mongodb": "^3.7.4",
"ws": ">=7.4.6"
},
"devDependencies": {
"jshint": "^2.9.5"
},
"description": "A real-time collaborative canvas, inspired by Reddit Place"
}