-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 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": "fivem-mock-server",
"version": "0.0.0-7",
"description": "Mock server for FiveM",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "[email protected]:antonstjernquist/react-fivem-hooks.git",
"author": "Anton Stjernquist <[email protected]>",
"license": "BSD-3",
"scripts": {
"build": "tsc",
"test": "jest"
},
"devDependencies": {
"@citizenfx/server": "^2.0.5834-1",
"@testing-library/jest-dom": "^5.16.5",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^18.7.13",
"jest": "^28.0.0",
"jest-environment-jsdom": "^29.0.1",
"rollup": "^2.78.1",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2"
},
"dependencies": {
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"express": "^4.18.1"
},
"jest": {
"verbose": true,
"roots": [
"<rootDir>"
],
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.js"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
}
}