-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "@netcodejs/monorepo",
"private": true,
"version": "0.0.9",
"description": "A js game framework for state-synchronization.",
"repository": "https://github.com/netcodejs/netcode",
"license": "GPL-3.0-or-later",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.20.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.6.1",
"cross-env": "^7.0.3",
"esbuild": "^0.14.20",
"esbuild-jest": "^0.5.0",
"husky": "^7.0.1",
"jest": "^27.5.0",
"lint-staged": "^11.1.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"turbo": "^1.1.2",
"typescript": "^4.3.5"
},
"scripts": {
"build": "turbo run build",
"build:fast": "turbo run build:fast",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:main": "turbo run test --scope=netcodejs --stream",
"test:main:coverage": "turbo run test:coverage --scope=netcodejs --stream",
"prepare": "husky install",
"release": "changeset publish"
},
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write"
}
}