-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.91 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
{
"name": "snipcode",
"version": "1.0.0",
"license": "AGPL-3.0",
"private": true,
"scripts": {
"build": "turbo run build",
"build:prod": "turbo run build:prod",
"dev": "turbo run dev --no-cache --parallel --continue",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean --force && rm -rf .turbo",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"cache:login": "turbo login",
"cache:link": "turbo link",
"cache:disable": "turbo unlink",
"prerelease": "changeset"
},
"workspaces": [
"packages/domain",
"packages/embed",
"packages/front",
"packages/utils",
"apps/backend",
"apps/web"
],
"lint-staged": {
"**/*.ts?(x)": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@changesets/cli": "2.27.5",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/jest": "29.5.12",
"@types/lodash": "4.17.5",
"@types/node": "20.14.8",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"babel-jest": "29.7.0",
"dotenv": "16.4.5",
"dotenv-cli": "7.4.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-turbo": "2.0.4",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-sort-destructure-keys": "2.0.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "3.2.0",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-mock-extended": "3.0.7",
"msw": "2.3.1",
"prettier": "3.2.5",
"ts-jest": "29.1.5",
"turbo": "2.0.5",
"typescript": "5.5.2"
},
"packageManager": "[email protected]"
}