-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.62 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
{
"name": "mc-official-website",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:app": "cd packages/app && npm run dev",
"deploy:app": "cd packages/app && npm run deploy",
"start:server": "cd packages/server && npm run dev",
"deploy:server": "cd packages/app && npm run deploy",
"eslint": "eslint packages/** --ext .js, .jsx, .ts, .tsx --cache",
"eslint:fix": "npm run eslint -- --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "npm run eslint && npm run prettier",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prepare": "husky install",
"commit": "git pull && git add -A && git-cz && git push"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"git-cz": "^4.9.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "10.7.0",
"typeface-roboto": "^1.1.13",
"typescript": "^4.7.4"
},
"keywords": [],
"author": "",
"license": "ISC",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write --list-different"
],
"*.{json,md,html,css,scss,sass,less,styl}": [
"prettier --write --list-different"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}