-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "orbs-website",
"version": "1.0.0",
"description": "Website for Orbs.com",
"main": "index.js",
"scripts": {
"prebuild": "sh prebuild.sh",
"build": "cuttlebelle",
"postbuild": "node ./build-rss-feed.js",
"test": "echo \"Error: no test specified\" && exit 1",
"sass-prebuild": "sass ./assets/sass/index.scss ./assets/css/index.css",
"watch-sass": "sass -w ./assets/sass/index.scss ./assets/css/index.css",
"watch": "yarn watch-sass & cross-env IS_DEV=true cuttlebelle -w",
"watch-prod": "yarn watch-sass & cuttlebelle -w"
},
"cuttlebelle": {
"site": {
"markdownRenderer": "markdown.js"
}
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"cross-env": "^7.0.3",
"globe.gl": "^2.21.1",
"moment": "^2.29.1",
"sass": "^1.45.1",
"node-html-parser": "^5.3.3",
"rss-generator": "0.0.3",
"xml": "^1.0.1",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0"
}
}