-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.21 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.21 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
{
"name": "leaf-dot-is",
"version": "0.0.0",
"description": "The personal website of Leaf Rogers",
"main": "server/init.js",
"scripts": {
"build": "esbuild client/init.js --minify --bundle --outfile=public/js/init.js",
"build:watch": "npm run -s build -- --watch",
"jest": "BASE_URL='' PERMALINK_BASE_URL='' PRISMIC_ACCESS_TOKEN='' PRISMIC_REPO_NAME='test' PRISMIC_TYPES_TOKEN='' SUPABASE_KEY='test' SUPABASE_URL='http://localhost:1234' node --experimental-vm-modules --no-warnings ./node_modules/.bin/jest",
"lint": "npm run -s lint:syntax && npm run -s lint:types",
"lint:syntax": "eslint \"**/*.js\" --ignore-pattern \"public/**\" && echo \"✓ Linted syntax and styling\"",
"lint:types": "tsc -p jsconfig.json && echo \"✓ Linted types\"",
"postinstall": "husky",
"start": "node server/init.js",
"start:dev": "set -a; source .env; set +a && nodemon -e js,html,css",
"test": "npm run -s lint && npm run -s test:coverage",
"test:coverage": "npm run -s jest -- --coverage --collectCoverageFrom=\"./server/**\"",
"test:watch": "npm run -s jest -- --watch"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/leafrogers/leaf-dot-is.git"
},
"license": "MIT",
"dependencies": {
"@prismicio/client": "^7.3.1",
"@prismicio/helpers": "^2.3.9",
"@supabase/supabase-js": "^2.44.3",
"compression": "^1.7.4",
"date-fns": "^3.3.1",
"express": "^4.18.2",
"feed": "^4.2.2",
"helmet": "^7.1.0",
"node-html-parser": "^6.1.12",
"prettier": "^3.2.5",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/serve-favicon": "^2.5.7",
"@types/supertest": "^6.0.2",
"esbuild": "^0.20.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"nock": "^14.0.0-beta",
"nodemon": "^3.0.3",
"prismic-ts-codegen": "^0.1.19",
"supertest": "^6.3.4",
"typescript": "^5.3.3"
},
"engines": {
"node": "^20.11.x"
}
}