-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.47 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.47 KB
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
52
53
54
55
{
"name": "CoinFlowSystem",
"version": "1.0.0",
"description": "A flexible and secure API-driven coin management system for integrating virtual currency functionality in games and applications.",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"prisma-generate": "npx prisma generate",
"prisma-studio": "npx prisma studio",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"lint": "eslint .",
"format": "prettier --write .",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilyaskarim/CoinFlowSystem.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ilyaskarim/CoinFlowSystem/issues"
},
"homepage": "https://github.com/ilyaskarim/CoinFlowSystem#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/lodash.get": "^4.4.9",
"husky": "^8.0.3",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"pretty-quick": "^3.1.3",
"prisma": "^5.6.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@prisma/client": "^5.6.0",
"axios": "^1.7.7",
"cors": "^2.8.5",
"express": "^4.18.2",
"lodash.get": "^4.4.2",
"yup": "^1.3.2"
}
}