-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.99 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.99 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "programmable-banking-sim",
"version": "1.2.0",
"description": "Local Simulation of the api service. for local testing and demo purposes",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "npm run dev",
"dev": "tsx --watch ./src/index.ts --tsconfig ./tsconfig.json",
"build": "npx tsc",
"test": "mocha",
"tailwind": "npx tailwindcss -i ./src/input.css -o ./public/output.css",
"lint": "npx eslint src/**",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"bin": {
"pbsim": "index.js"
},
"author": "Devin Pearson",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.13.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dayjs": "^1.11.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"morgan": "^1.10.0",
"programmable-card-code-emulator": "^1.2.0",
"socket.io": "^4.7.5",
"typescript": "^5.4.5",
"uuid": "^10.0.0",
"vue": "^3.4.27"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@faker-js/faker": "^7.6.0",
"@stylistic/eslint-plugin-js": "^2.9.0",
"@types/better-sqlite3": "^7.6.10",
"@types/chai": "^4.3.17",
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.7",
"@types/morgan": "^1.9.9",
"@types/sinon": "^17.0.3",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"chai": "^5.1.1",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"mocha": "^10.7.0",
"prettier": "^3.3.3",
"prisma": "^5.17.0",
"programmable-banking-faker": "^1.0.2",
"sinon": "^18.0.0",
"supertest": "^7.0.0",
"tailwindcss": "^3.4.3",
"tsx": "^4.7.2",
"typescript-eslint": "^8.1.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}