-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "photographia",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:index": "npm run dev --workspace=src/Index",
"start:deck": "npm run dev --workspace=src/Deck",
"start:float": "npm run dev --workspace=src/Float",
"start:grid": "npm run dev --workspace=src/Grid",
"start:masonry": "npm run dev --workspace=src/Masonry",
"start:site": "npm run dev --workspace=src/Site",
"start:stack": "npm run dev --workspace=src/Stack",
"build:all": "npm run build --workspaces --if-present -- --emptyOutDir"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kirkone/Photographia.git"
},
"author": "Kirsten Kluge",
"license": "MIT",
"bugs": {
"url": "https://github.com/kirkone/Photographia/issues"
},
"homepage": "https://github.com/kirkone/Photographia#readme",
"workspaces": [
"src/Index",
"src/Deck",
"src/Float",
"src/Grid",
"src/Masonry",
"src/Site",
"src/Stack"
],
"devDependencies": {
"sass": "^1.80.7",
"typescript": "^5.6.3",
"vite": "5.4.11"
}
}