-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 930 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 930 Bytes
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
{
"name": "json-grid-garden",
"version": "1.0.0",
"description": "A lean web server with SASS-based landing page",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"sass": "sass --watch public/styles/main.scss:public/styles/main.css public/weeks/*/style.scss:public/weeks/*/style.css",
"sass:build": "./scripts/build-sass.sh",
"dev:all": "concurrently \"npm run dev\" \"npm run sass\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/JSONRice/json-grid-garden.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JSONRice/json-grid-garden/issues"
},
"homepage": "https://github.com/JSONRice/json-grid-garden#readme",
"dependencies": {
"express": "^4.18.2",
"nodemon": "^3.0.2",
"sass": "^1.69.5"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}