-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "@cfwest/apis",
"description": "Unofficial CrossFire West API implementation.",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": {
"name": "cfna"
},
"homepage": "https://github.com/cfna/cfwest-api",
"repository": {
"type": "git",
"url": "git+https://github.com/cfna/cfwest-api.git"
},
"scripts": {
"prebuild": "npm run clean",
"build": "nx run-many --target=build",
"clean": "nx run-many --target=clean",
"test": "nx run-many --target=test",
"docs": "fliegdoc build",
"docs:serve": "fliegdoc serve",
"format": "nx run-many --target=format",
"lint": "nx run-many --target=lint",
"prepare": "husky install",
"publish": "nx run-many --target=publish"
},
"devDependencies": {
"@types/jest": "^28.0.0",
"@types/lodash": "^4.14.184",
"@types/lodash.merge": "^4.6.7",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"fliegdoc": "^0.5.2",
"husky": "^8.0.1",
"jest": "^28.0.0",
"lint-staged": "^13.0.3",
"nx": "14.7.6",
"prettier": "^2.7.1",
"release-it": "^15.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typedoc": "^0.23.13",
"typescript": "^4.8.2",
"winston": "^3.8.1"
},
"workspaces": [
"packages/*"
]
}