-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.51 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.51 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
{
"name": "schooltalk",
"version": "1.0.0",
"description": "Communication app for teachers, students, parents, and administration.",
"repository": "git@github.com:pSnehanshu/schooltalk.git",
"author": "Snehanshu <hello@snehanshu.com>",
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"dev:app": "yarn workspace schooltalk-app start",
"dev:backend": "yarn workspace schooltalk-backend dev",
"dev:b": "yarn dev:backend",
"dev:web": "yarn workspace edbox-web dev",
"start:backend": "yarn workspace schooltalk-backend start",
"expo": "yarn workspace schooltalk-app expo",
"eas": "yarn workspace schooltalk-app eas",
"prisma": "yarn workspace schooltalk-backend prisma",
"pretty": "prettier . -w",
"postinstall": "yarn prisma generate",
"lint": "eslint ."
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@chakra-ui/icons": "^2.1.0",
"core-js": "^3.31.0",
"prop-types": "^15.8.1",
"react-dropzone": "^14.2.3",
"react-icons": "^4.10.1",
"superjson": "^1.13.1"
},
"packageManager": "yarn@3.3.1",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/experimental-utils": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.43.0",
"prettier": "^2.8.8"
},
"resolutions": {
"react-native-raw-bottom-sheet@^2.2.0": "patch:react-native-raw-bottom-sheet@npm%3A2.2.0#./.yarn/patches/react-native-raw-bottom-sheet-npm-2.2.0-e9dc8fb4b8.patch"
}
}