-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
45
46
47
48
49
50
{
"name": "bonesnode",
"version": "1.0.0",
"description": "Bones dice game",
"main": "./server/app.js",
"scripts": {
"build": "gulp build",
"watch": "gulp watch",
"nodemon": "nodemon --watch ./server ./server/app.js ",
"start": "node ./server/app.js",
"pretest": "eslint ./server --fix",
"test": "echo \"Test complete\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/zsd7200/bonesnode.git"
},
"author": "zsd7200",
"license": "ISC",
"bugs": {
"url": "https://github.com/zsd7200/bonesnode/issues"
},
"homepage": "https://github.com/zsd7200/bonesnode#readme",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-dart-sass": "^1.1.0",
"gulp-eslint-new": "^1.9.1",
"gulp-nodemon": "^2.5.0",
"gulp-plumber": "^1.2.1",
"gulp-webp": "^5.0.0",
"nodemon": "^3.1.0"
},
"dependencies": {
"compression": "^1.7.4",
"express": "^4.18.2",
"express-handlebars": "^7.1.2",
"path": "^0.12.7",
"serve-favicon": "^2.5.0",
"socket.io": "^4.7.4"
}
}