-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
52 lines (52 loc) · 1.64 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
{
"name": "college-management",
"version": "1.0.0",
"main": "index.js",
"private": true,
"license": "MIT",
"workspaces": [
"client",
"server"
],
"scripts": {
"server": "yarn workspace @college-management/server start:dev",
"client": "yarn workspace @college-management/client dev",
"start": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"test:watch": "jest --watchAll --no-cache",
"test:api": "yarn workspace @college-management/server test",
"test:client": "yarn workspace @college-management/client test",
"test:ci": "jest",
"build-server": "yarn workspace @college-management/server build",
"build-client": "yarn workspace @college-management/client build",
"deploy": "concurrently --kill-others-on-fail \"yarn build-client\" \"yarn server\"",
"lint": "eslint --ext js,jsx --fix --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx|json|md)\" --write"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"concurrently": "^7.6.0"
},
"engines": {
"node": ">=18.10.0",
"npm": ">=8.19.0"
}
}