-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "neo4j-cypher-language-support",
"description": "Neo4j's Cypher Language Support",
"license": "Apache",
"version": "1.0.0",
"categories": [],
"repository": {
"type": "git",
"url": "git+https://github.com/neo4j/cypher-language-support.git"
},
"workspaces": [
"packages/*",
"vendor/*"
],
"scripts": {
"prepare": "husky install",
"build": "turbo run build",
"build-vscode": "turbo run neo4j-for-vscode#build:dev",
"release": "turbo run build && npx changeset publish",
"clean": "turbo run clean",
"watch": "turbowatch ./turbowatch.ts",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"dev-codemirror": "turbo run @neo4j-cypher/react-codemirror-playground#dev",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --fix --ext .ts",
"format": "prettier --config .prettierrc.json '**/*.ts' --write",
"benchmark": "turbo run benchmark --concurrency=1"
},
"engineStrict": true,
"engines": {
"node": ">=18.18.2",
"vscode": "^1.22.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.0",
"lint-staged": "^13.1.2",
"prettier": "^2.8.1",
"prettier-plugin-organize-imports": "^3.2.1",
"semver": "^7.6.1",
"turbo": "^1.13.4",
"turbowatch": "^2.29.4",
"typescript": "4.9.5",
"vitest": "^2.0.4"
}
}