-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.67 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "votes--root",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"d3-force",
"demo",
"votes",
"tsconfig"
]
},
"sideEffects": false,
"author": "lzear",
"repository": {
"type": "git",
"url": "https://github.com/lzear/votes.git"
},
"license": "MIT",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"npkill": "npx npkill",
"ncu": "npx npm-check-updates --workspaces --upgrade --root",
"lint": "eslint . && yarn turbo run lint",
"fix:prettier": "prettier --write \"**/*.*\"",
"test-prod": "yarn run eslint && yarn workspaces run test-prod",
"commit": "git-cz",
"precommit": "lint-staged",
"changeset:version": "yarn changeset version",
"release": "yarn workspace votes release && changeset publish"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"commitizen": "^4.3.0",
"dotenv": "^16.4.5",
"eslint": "^8.43.0",
"eslint-config-next": "^13.4.7",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unicorn": "^47.0.0",
"eslint-scope": "^7.2.0",
"eslint-visitor-keys": "^3.4.1",
"husky": "^9.0.11",
"is-boolean-object": "^1.1.2",
"lint-staged": "^15.2.2",
"prettier": "^2.8.8",
"turbo": "^1.12.4",
"typescript": "5.3.3"
},
"bugs": {
"url": "https://github.com/lzear/votes/issues"
},
"homepage": "https://github.com/lzear/votes",
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"volta": {
"node": "18.19.1",
"yarn": "1.22.21"
},
"nextBundleAnalysis": {
"budget": null,
"budgetPercentIncreaseRed": 20,
"showDetails": true
},
"dependencies": {}
}