-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathserver-package.json
More file actions
59 lines (59 loc) · 2.22 KB
/
server-package.json
File metadata and controls
59 lines (59 loc) · 2.22 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "backend-application",
"version": "0.0.1",
"description": "The repository housing all projects to be built by Tuteria backend Team including web and mobile",
"main": "index.js",
"repository": "git@github.com:Tuteria/frontend-application.git",
"author": "Beesama <gbozee@gmail.com>",
"license": "None",
"private": true,
"workspaces": ["packages/*", "services/*"],
"scripts": {
"bootstrap": "lerna bootstrap",
"changeset": "changeset",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|jsx|ts|tsx|json|css)\"",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different",
"lint": "lerna run lint",
"components": "yarn workspace @tuteria/components",
"web": "yarn workspace @tuteria/video-web-app",
"mobile": "yarn workspace @tuteria/video-mobile-app",
"build": "lerna build",
"validate": "npm-run-all --parallel check-format lint build",
"storybook": "start-storybook -p 9009 -s public --ci",
"build-storybook": "build-storybook -s public",
"clean": "lerna clean --yes && rm -rf node_modules",
"test": "lerna run test",
"service:auth": "yarn workspace @tuteria/authentication-service",
"service:marketing": "yarn workspace @tuteria/marketing-service",
"service:media": "yarn workspace @tuteria/media-service",
"service:notification": "yarn workspace @tuteria/notification-service",
"service:quiz": "yarn workspace @tuteria/quiz-service",
"service:referral": "yarn workspace @tuteria/referral-service",
"service:subscription": "yarn workspace @tuteria/subscription-service",
"service:example": "yarn workspace @tuteria/example-service"
},
"devDependencies": {
"@prisma/cli": "^2.2.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.7",
"@types/node": "^12.12.24",
"@types/supertest": "^2.0.10",
"@types/morgan": "^1.9.1",
"lerna": "^3.20.2",
"supertest": "^4.0.2",
"ts-node": "8.10.2",
"uvu": "0.0.19"
},
"dependencies": {
"npm-run-all": "^4.1.5",
"@prisma/client": "^2.2.2",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"nodemon": "^2.0.4",
"express": "^4.17.1",
"typescript": "3.9.6",
"morgan": "^1.10.0",
"winston": "^3.3.3"
}
}