-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1 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
{
"name": "choreography-ts",
"version": "1.0.0",
"description": "Choreographic Programming in TypeScript",
"main": "index.js",
"scripts": {
"build": "turbo run build",
"test": "vitest run --silent",
"coverage": "vitest run --coverage --silent",
"lint": "eslint . --ext .ts,.js,.cjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "turbo run typecheck",
"check": "npm-run-all --serial lint format:check"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node-fetch": "~2.6.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^3.3.3",
"turbo": "^1.13.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"volta": {
"node": "18.16.1"
}
}