-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 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
{
"name": "matrix_bot",
"version": "0.0.1",
"private": true,
"scripts": {
"server": "nodemon ./bin/restart-handler.js",
"client": "cd client && npm run start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"api": "pm2 start ./bin/restart-handler.js --name 'api'",
"ui": "cd client && pm2 start ./node_modules/react-scripts/scripts/start.js --name 'ui'",
"start": "concurrently \"npm run api\" \"npm run ui\"",
"stop": "pm2 delete all"
},
"dependencies": {
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"connect-session-sequelize": "^6.0.0",
"cors": "^2.8.5",
"cron": "^1.7.1",
"dotenv": "^10.0.0",
"express": "~4.16.0",
"express-session": "^1.16.1",
"http-errors": "~1.6.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"matrix-bot-sdk": "^0.5.19",
"morgan": "~1.9.0",
"mysql2": "^2.3.3",
"sequelize": "^6.17.0",
"ws": "^8.5.0"
},
"devDependencies": {
"concurrently": "^5.0.0",
"mocha": "^6.2.1"
}
}