-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
44 lines (44 loc) · 1.41 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
{
"name": "root",
"private": true,
"scripts": {
"build-all":"pnpm run --parallel -r build",
"run-all":"pnpm run --parallel -r run:dev",
"nx-build-all":"nx run-many --target=build",
"lint": "node node_modules/prettier/bin-prettier --check \"**/*.{js,json,ts,yml,yaml}\"",
"prepare": "husky install",
"prettier": "node node_modules/prettier/bin-prettier --check '**/*.{js,json,ts,yml,yaml}'",
"prettier:write": "node node_modules/prettier/bin-prettier --write \"**/*.{js,json,ts,yml,yaml}\""
},
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-config-next": "13.1.5",
"fbjs-scripts": "^3.0.1",
"husky": "^7.0.4",
"jest": "^27.4.7",
"nx": "^15.8.8",
"prettier": "^2.8.6",
"prettier-plugin-svelte": "^2.9.0",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"eslint-config-next": "^13.2.3",
"eslint-config-prettier": "^8.7.0"
}
}