-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.04 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
37
38
39
40
41
42
43
44
{
"name": "pipopipette",
"version": "1.0.0",
"description": "A game invented by a French mathematician",
"main": "server/server.js",
"directories": {
"public": "public"
},
"scripts": {
"start": "node server/server.js",
"dev": "nodemon server/server.js | tee log.txt",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Skinbow/Pipopipette.git"
},
"keywords": [
"Game"
],
"author": "mikhail-yakimenko",
"license": "CC-BY-NC-2.5",
"bugs": {
"url": "https://github.com/Skinbow/Pipopipette/issues"
},
"homepage": "https://github.com/Skinbow/Pipopipette#readme",
"dependencies": {
"compression": "^1.7.4",
"express": "^4.17.1",
"helmet": "^4.6.0",
"http": "^0.0.1-security",
"path": "^0.12.7",
"serve-favicon": "^2.5.0",
"socket.io": "^4.1.3"
},
"engines": {
"node": "14.17.2"
},
"devDependencies": {
"eslint-config-jquery": "^3.0.0",
"jquery": "^3.6.0",
"nodemon": "^2.0.12"
}
}