-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.34 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.34 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@quasarbright/projection",
"version": "1.0.3",
"description": "A static site generator that creates a beautiful, interactive gallery to showcase your coding projects. Features search, filtering, tags, responsive design, and an admin UI.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"projection": "bin/projection.js"
},
"author": "Mike Delmonaco",
"license": "MIT",
"scripts": {
"build": "tsc && npm run copy-templates && npm run admin:build",
"copy-templates": "mkdir -p lib/templates && cp -r src/templates/* lib/templates/",
"admin:build": "cd src/admin/client && npm run build",
"admin:dev": "concurrently \"npm run admin:server:dev\" \"npm run admin:client:dev\"",
"admin:server:dev": "nodemon --watch src/admin/server --ext ts --exec 'ts-node src/cli/index.ts admin --port 3000'",
"admin:client:dev": "cd src/admin/client && npm run dev",
"clean": "rm -rf dist node_modules lib",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"static-site-generator",
"portfolio",
"projects",
"showcase",
"gallery",
"javascript",
"css",
"responsive"
],
"dependencies": {
"chokidar": "^3.5.3",
"cors": "^2.8.5",
"express": "^5.1.0",
"gh-pages": "^6.1.1",
"js-yaml": "^4.1.0",
"multer": "^2.0.2",
"yaml": "^2.8.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quasarbright/projection.git"
},
"homepage": "https://quasarbright.github.io/projection/",
"engines": {
"node": ">=14.0.0"
},
"files": [
"lib/",
"bin/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"devDependencies": {
"@types/browser-sync": "^2.29.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.5",
"@types/gh-pages": "^6.1.0",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/multer": "^2.0.0",
"@types/node": "^20.19.24",
"@types/supertest": "^6.0.3",
"browser-sync": "^3.0.4",
"concurrently": "^9.2.1",
"jest": "^29.7.0",
"nodemon": "^3.0.0",
"supertest": "^7.1.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"bugs": {
"url": "https://github.com/quasarbright/projection/issues"
}
}