-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.34 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": "protocol-labs-research",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:js": "browserify assets/main.js -o assets/js/bundle.js",
"build:hugo": "rm -rf public && hugo",
"build": "run-s build:js build:hugo",
"build_and_watch:js": "watchify assets/main.js -o assets/js/bundle.js",
"build_and_watch:hugo": "hugo serve --templateMetrics --templateMetricsHints",
"serve": "run-p build_and_watch:js build_and_watch:hugo",
"deploy:staging": "run-s build:js build:hugo _deploy:hugo:staging",
"deploy:production-preview": "run-s build:js build:hugo _deploy:hugo:production-preview",
"_deploy:hugo:staging": "hugo deploy --target=staging --verbose --invalidateCDN",
"_deploy:hugo:production-preview": "hugo deploy --target=production-preview --verbose --invalidateCDN"
},
"repository": {
"type": "git",
"url": "[email protected]:protocol/research-website.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.2.0",
"autoprefixer": "^9.5.1",
"browserify": "^16.5.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.2",
"postcss-for": "^2.1.1",
"postcss-import": "^12.0.1",
"simple-custom-attributes": "^2.6.0",
"tailwindcss": "^1.8.10",
"watchify": "^4.0.0"
},
"packageManager": "[email protected]"
}