-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.55 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
45
46
47
48
49
50
51
{
"name": "congol",
"version": "1.0.0",
"description": "Multiplayer Conway's Game Of Life",
"main": "index.js",
"scripts": {
"build": "gulp build",
"build-dev": "browserify client/js/main.js -o dist/bundle.js",
"start": "npm run build; concurrently 'cd server; nodemon app.js' 'gulp watch'",
"deploy-local": "git pull; gulp build; cd server ; pm2 reload app.js",
"deploy": "gulp build; rsync -avP dist/ [email protected]:/home/luke/congol/dist; ssh [email protected] \"cd congol; git pull; cd server; pm2 reload app.js\"",
"deploy-ghp": "gh-pages -d dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukew3/congol.git"
},
"author": "Luke Weiler",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/lukew3/congol/issues"
},
"homepage": "https://github.com/lukew3/congol#readme",
"devDependencies": {
"browserify": "^17.0.0",
"concurrently": "^6.5.1",
"gh-pages": "^3.2.3",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-browserify": "^0.5.1",
"gulp-concat": "^2.6.1",
"gulp-csso": "^4.0.1",
"gulp-pug": "^5.0.0",
"gulp-uglify": "^3.0.2",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"axios": "^0.24.0",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"file-saver": "^2.0.5",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.2.2",
"nanoid": "^3.1.30",
"nodemon": "^2.0.15",
"socket.io": "^4.4.0"
}
}