forked from sourcegraph/cody
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
85 lines (85 loc) · 2.58 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
{
"private": true,
"name": "@sourcegraph/cody",
"description": "Cody, the code AI that writes code, fixes bugs, and answers questions using the code graph",
"license": "Apache-2.0",
"homepage": "https://cody.dev",
"repository": {
"type": "git",
"url": "https://github.com/iohub/collama"
},
"engines": {
"node": "^v20.4.0",
"pnpm": "^8.6.7"
},
"browser": {
"fs": false
},
"scripts": {
"build": "tsc --build",
"watch": "tsc --build --watch",
"lint": "pnpm run lint:js && pnpm run lint:css",
"lint:js": "NODE_OPTIONS=--max-old-space-size=4096 eslint --quiet --cache '**/*.[tj]s?(x)'",
"lint:css": "stylelint --quiet --cache '**/*.css'",
"format": "prettier '**/{*.{js?(on),ts?(x),md,scss},.*.js?(on)}' --list-different --config .prettierrc.js --write",
"format:check": "prettier '**/{*.{js?(on),ts?(x),md,scss},.*.js?(on)}' --config .prettierrc.js --check --write=false",
"test": "vitest",
"test:unit": "vitest run",
"test:integration": "pnpm -C vscode test:integration",
"test:e2e": "pnpm -C vscode test:e2e"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@types/google-protobuf": "^3.15.6",
"@sourcegraph/eslint-config": "0.37.1",
"@sourcegraph/prettierrc": "^3.0.3",
"@sourcegraph/tsconfig": "^4.0.1",
"@storybook/addon-essentials": "^7.0.26",
"@storybook/addon-interactions": "^7.0.26",
"@storybook/addon-links": "^7.0.26",
"@storybook/blocks": "^7.0.26",
"@storybook/react": "^7.0.26",
"@storybook/react-vite": "^7.0.26",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/node": "20.4.0",
"@types/prettier": "2.7.3",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"@vitejs/plugin-react": "^4.0.2",
"esbuild": "^0.18.11",
"eslint": "^8.49.0",
"eslint-plugin-storybook": "^0.6.12",
"jsdom": "^22.1.0",
"prettier": "3.0.3",
"storybook": "^7.0.26",
"stylelint": "^15.10.3",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^34.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vite": "^4.4.3",
"vitest": "^0.33.0"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"packageManager": "[email protected]",
"resolutions": {
"tslib": "2.1.0"
},
"pnpm": {
"packageExtensions": {
"@vscode/webview-ui-toolkit": {
"dependencies": {
"@microsoft/fast-web-utilities": "^6.0.0",
"tslib": "^2.1.0"
}
}
},
"neverBuiltDependencies": [
"deasync",
"playwright"
]
}
}