-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "investory",
"version": "0.1.0",
"description": "",
"private": true,
"engines": {
"node": "12.x"
},
"scripts": {
"start": "node server/dist/index.js",
"lint": "eslint --ignore-path .gitignore --ext .ts,.tsx",
"prettier": "prettier --ignore-path .gitignore \"**/*.(ts|tsx|json)\"",
"check:format": "npm run prettier -- --list-different",
"check:types": "run-p check:types:server check:types:client",
"check:types:server": "cd server && npm run check:types",
"check:types:client": "cd client && npm run check:types",
"build": "npm run build:server",
"build:all": "run-p build:server build:client",
"build:server": "cd server && npm run build",
"build:client": "cd client && npm run build",
"test": "run-p test:client test:server",
"test:client": "cd client && npm run test:coverage",
"test:server": "cd server && npm run test:coverage",
"dev": "run-p dev:server dev:client",
"dev:client": "cd client && npm run dev",
"dev:server": "cd server && npm run dev",
"validate": "run-p check:format lint test build",
"postinstall": "(cd client && npm install && npm install --only=dev); (cd server && npm install && npm install --only=dev)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otanriverdi/investory.git"
},
"author": "",
"bugs": {
"url": "https://github.com/otanriverdi/investory/issues"
},
"homepage": "https://github.com/otanriverdi/investory#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.2",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.0",
"typescript": "^4.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run check:types && lint-staged && npm run test && npm run build",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.+(js|ts|tsx|json)": [
"prettier --write",
"npm run lint"
]
}
}