-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.59 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": "@rickarm/checkout",
"version": "1.0.0",
"description": "Evening reflection journal for presence and joy",
"main": "lib/cli/commands.js",
"bin": {
"checkout": "bin/checkout.js"
},
"scripts": {
"test": "jest --passWithNoTests",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"dev": "node bin/checkout.js",
"serve": "node bin/checkout.js serve",
"api": "node bin/api.js",
"api:multi": "node bin/api-server.js",
"lint": "eslint lib/ bin/ || true"
},
"keywords": [
"journal",
"reflection",
"mindfulness",
"cli",
"journaling",
"meditation",
"wellness",
"gratitude",
"presence",
"markdown"
],
"author": "Rick Armbrust",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rickarm/checkout.git"
},
"bugs": {
"url": "https://github.com/rickarm/checkout/issues"
},
"homepage": "https://github.com/rickarm/checkout#readme",
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"dependencies": {
"@clerk/express": "^2.1.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^17.4.2",
"ejs": "^5.0.1",
"express": "^5.2.1",
"express-session": "^1.19.0",
"googleapis": "^171.4.0",
"inquirer": "^8.2.5",
"pg": "^8.20.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/tests/e2e/"
]
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.3.0",
"supertest": "^7.2.2"
}
}