-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.31 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
{
"name": "studio-os",
"version": "0.2.0",
"description": "Self-hosted studio management: booking, class packs, memberships. Bring your own Stripe.",
"license": "MIT",
"type": "module",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"test": "node --test \"test/*.test.js\"",
"seed": "node scripts/seed.mjs",
"import-mindbody": "node scripts/import-mindbody.mjs"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"better-sqlite3": "^11.10.0",
"cookie-session": "^2.1.0",
"dotenv": "^17.4.2",
"ejs": "^6.0.1",
"express": "^5.2.1",
"marked": "^18.0.9",
"nodemailer": "^9.0.4",
"stripe": "^16.12.0"
},
"devDependencies": {
"supertest": "^7.0.0"
},
"allowScripts": {
"better-sqlite3@11.10.0": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/Booyaka101/studio-os.git"
},
"homepage": "https://github.com/Booyaka101/studio-os#readme",
"bugs": {
"url": "https://github.com/Booyaka101/studio-os/issues"
},
"keywords": [
"self-hosted",
"studio",
"yoga",
"pilates",
"gym",
"booking",
"class-packs",
"memberships",
"mindbody-alternative",
"stripe",
"scheduling",
"fitness"
]
}