-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.05 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "chatty-app",
"version": "1.0.0",
"private": true,
"main": "index.js",
"repository": "git@github.com:francislagares/mern-monorepo.git",
"author": "Francis Lagares <francis.lagares@gmail.com>",
"license": "MIT",
"workspaces": [
"client",
"server"
],
"scripts": {
"server": "yarn workspace @mern-monorepo/server start:dev",
"client": "yarn workspace @mern-monorepo/client start",
"start": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"test:watch": "jest --watchAll --no-cache",
"test:api": "yarn workspace @mern-monorepo/server test",
"test:client": "yarn workspace @mern-monorepo/client test",
"test:ci": "jest",
"build-server": "yarn workspace @mern-monorepo/server build",
"build-client": "yarn workspace @mern-monorepo/client build",
"deploy": "concurrently --kill-others-on-fail \"yarn build-client\" \"yarn server\"",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"lint": "eslint --ext js,jsx,ts,tsx --fix --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx|json|md)\" --write"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@mern-monorepo/client": "workspace:^",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.2",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"concurrently": "^8.0.1"
},
"engines": {
"node": ">=18.10.0",
"npm": ">=8.19.0"
},
"packageManager": "yarn@3.2.1"
}