-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 950 Bytes
/
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
{
"name": "@raha/homepage",
"version": "0.0.1",
"description": "Google AMP static site for the Raha Foundation",
"repository": "[email protected]:rahafoundation/raha-homepage.git",
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"colors": "^1.2.1",
"concurrently": "^3.5.1",
"gh-pages": "^1.1.0",
"glob": "^7.1.2",
"glob-promise": "^3.4.0",
"handlebars": "^4.0.11",
"handlebars-layouts": "^3.1.4",
"live-server": "^1.2.0",
"mkdirp": "^0.5.1",
"static-i18n": "^0.2.1",
"watch": "^1.0.2"
},
"scripts": {
"build": "./scripts/build",
"deploy:force": "yarn build && gh-pages -d build/ -t -m \"Updated website [skip ci]\"",
"deploy": "./scripts/deploy",
"lint": "./scripts/lint",
"watch:build": "watch \"yarn build\" src/ locales/ scripts/",
"serve": "concurrently --kill-others \"live-server ./build\" \"yarn watch:build\"",
"start": "yarn serve"
}
}