-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1015 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1015 Bytes
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": "fulll-backend",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"@eslint/js": "^9.27.0",
"@prisma/client": "^6.9.0",
"chalk": "^5.4.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@cucumber/cucumber": "^11.2.0",
"@types/chai": "^5.2.1",
"@types/cucumber": "^6.0.1",
"@types/node": "^22.14.1",
"@types/yargs": "^17.0.33",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3",
"prisma": "^6.9.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"vitest": "^3.1.2"
},
"scripts": {
"generate": "prisma generate --no-hints",
"build": "tsc",
"prepare": "rm -rf dist/ && npm run generate && npm run build",
"fleet": "npm run prepare && ts-node ./dist/src/cli.js",
"cucumber": "cucumber-js",
"cucumber:critical": "cucumber-js --tags \"@critical\"",
"lint": "eslint .",
"test": "vitest"
}
}