-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
38 lines (38 loc) · 1.25 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
{
"name": "logoexecutive",
"private": true,
"version": "1.1.0",
"repository": "https://github.com/TeamShiksha/logoexecutive.git",
"workspaces": [
"client",
"server"
],
"scripts": {
"build": "yarn workspace client build",
"start": "concurrently \"yarn start:client\" \"yarn start:server\"",
"start:client": "yarn workspace client start",
"start:server": "yarn workspace server start",
"lint:client": "yarn workspace client lint",
"lint:server": "yarn workspace server lint",
"lint": "concurrently \"yarn lint:client\" \"yarn lint:server\"",
"lint-fix:server": "yarn workspace server lint:fix",
"lint-fix:client": "yarn workspace client lint:fix",
"lint-fix": "concurrently \"yarn workspace server lint:fix\" \"yarn workspace client lint:fix\"",
"test": "concurrently \"yarn test:client\" \"yarn test:server\"",
"test:server": "yarn workspace server test",
"test:client": "yarn workspace client test",
"format:client": "yarn workspace client format",
"check:client": "cd client && yarn run check",
"coverage:client": "yarn workspace client coverage",
"coverage:server": "yarn workspace server coverage"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"pre-commit": [
"test:server",
"test:client",
"lint",
"check:client"
]
}