-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "socvr.org",
"version": "1.0.0",
"description": "socvr.org website (for GitHub pages)",
"main": "index.js",
"scripts": {
"build": "concurrently \"npm:build-css\" \"npm:build-images\" \"npm:build-ejs\" \"npm:build-comments\"",
"build-ejs": "ejsc ./pages/**/*.ejs -o ./dist",
"watch-ejs": "ejsc ./pages/**/*.ejs -o ./dist --watch",
"build-css": "ncp ./css ./dist",
"build-images": "ncp ./images ./dist",
"build-comments": "node generate-comment-files.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SO-Close-Vote-Reviewers/socvr.org.git"
},
"author": "SOCVR contributors",
"license": "ISC",
"bugs": {
"url": "https://github.com/SO-Close-Vote-Reviewers/socvr.org/issues"
},
"homepage": "https://github.com/SO-Close-Vote-Reviewers/socvr.org#readme",
"type": "module",
"dependencies": {
"@wcj/ejs-cli": "^1.6.0",
"concurrently": "^8.2.2",
"ejs": "^3.1.10",
"json5": "^2.2.3",
"marked": "^14.1.0",
"ncp": "^2.0.0"
}
}