-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "fastmeet",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"install-server": "npm install --prefix server",
"install-client": "npm install --prefix client",
"install": "npm run install-server && npm run install-client",
"server": "npm run watch --prefix server",
"client": "npm run start --prefix client",
"watch": "npm run server & npm run client",
"deploy": "npm run build --prefix client && npm start --prefix server",
"test": "npm run test --prefix client",
"lint": "npm run lint --prefix server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/silvareal/fastmeet.git"
},
"author": "Sylvernus Akubo",
"license": "ISC",
"bugs": {
"url": "https://github.com/silvareal/fastmeet/issues"
},
"homepage": "https://github.com/silvareal/fastmeet#readme",
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"lodash": "^4.17.21",
"react-ga": "^3.3.1",
"react-query": "^3.39.2"
},
"devDependencies": {
"concurrently": "^7.5.0",
"typescript": "^4.8.4"
}
}