-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 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
{
"name": "tetrisscramble",
"version": "1.0.0",
"description": "multiplayer tetris",
"main": "index.js",
"scripts": {
"heroku-postbuild": "cd client && npm install && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"setup": "npm install && cd client && npm install && npm run build",
"start": "node index.js",
"dev": "cross-env JWT_SECRET=secret123 REACT_CLIENT_ORIGIN=http://localhost:3000 DATABASE_URL=postgres://tetris_admin:123@localhost:5432/tetris_scramble_dev node index.js"
},
"author": "Vitaliy Zhidkikh",
"contributors": [],
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"http-proxy-middleware": "^1.0.6",
"jsonwebtoken": "^8.5.1",
"passport": "^0.4.1",
"passport-cookie": "^1.0.9",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^8.5.1",
"sequelize": "^6.3.5",
"socket.io": "^3.0.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"cross-env": "^7.0.3"
}
}