-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 1.15 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
{
"name": "@viniciusgdr/blaze",
"version": "3.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "sucrase-node src/main/server.ts",
"test": "jest --passWithNoTests --silent --noStackTrace --runInBand",
"test:verbose": "jest --passWithNoTests --runInBand",
"test:unit": "npm test -- --watch -c jest-unit-config.js",
"test:integration": "npm test -- --watch -c jest-integration-config.js",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"install": "tsc"
},
"author": "viniciusgdr",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.4.4",
"@types/node-fetch": "^2.6.4",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"eslint": "^8.45.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.3.1",
"jest-mock-extended": "^3.0.4",
"prisma": "^5.0.0",
"ts-jest": "^29.0.3",
"typescript": "^5.4.5"
},
"dependencies": {
"ws": "^8.14.2"
}
}