-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 1.73 KB
/
package.json
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
{
"name": "sitefox",
"version": "0.0.26",
"description": "Backend web framework for Node + ClojureScript",
"author": "Chris McCormick <[email protected]>",
"homepage": "https://github.com/chr15m/sitefox",
"dependencies": {
"@keyv/sqlite": "3.6.5",
"cookie-parser": "1.4.5",
"csrf-csrf": "3.0.3",
"express": "4.21.0",
"express-session": "1.17.2",
"html-to-text": "8.1.0",
"json-stringify-safe": "5.0.1",
"keyv": "4.5.2",
"morgan": "1.10.0",
"node-html-parser": "4.1.5",
"node-input-validator": "4.5.0",
"nodemailer": "6.9.9",
"passport": "0.6.0",
"passport-local": "1.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"rotating-file-stream": "3.0.4",
"source-map-support": "0.5.21",
"tmp": "0.2.1"
},
"devDependencies": {
"@keyv/postgres": "1.4.10",
"nbb": "1.2.182",
"playwright": "1.30.0",
"shadow-cljs": "2.19.0",
"tree-kill": "1.2.2",
"wait-port": "1.1.0"
},
"scripts": {
"sync-deps": "nbb bin/sync-deps.cljs",
"docs": "nbb bin/generate-docs.cljs",
"pre-publish": "npm run sync-deps; nbb bin/update-readme-versions.cljs; npm run docs; echo Changes:; git log --oneline `git rev-list --tags --max-count=1`..; echo; echo 'Now commit changes and run `git tag vX.Y.Z`.'",
"test": "rm -f ./tests.sqlite; SECRET=testing TESTING=1 DATABASE_URL=sqlite://./tests.sqlite npx shadow-cljs compile test",
"test-postgres": "bin/test-on-postgres",
"test-e2e": "SECRET=testing NODE_OPTIONS='--experimental-fetch --no-warnings' nbb --classpath src src/sitefoxtest/e2etests.cljs",
"watch": "SECRET=watching TESTING=1 shadow-cljs watch test"
},
"files": [
"shadow-cljs.edn",
"deps.edn",
"src/**",
"bin/**",
"docs/**"
]
}