-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·35 lines (35 loc) · 1.52 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
{
"name": "dear-chinatown",
"version": "2.0.0",
"description": "A new website for the Dear Chinatown project.",
"main": "index.js",
"repository": "https://github.com/throneless-tech/dear-chinatown",
"author": "Rae Gaines <[email protected]>, Harum Helmy <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rimraf public/ assets/output static/output resources",
"build": "run-s deploy:assets build:hugo",
"start": "run-s build:assets dev",
"start:dev": "run-p dev:parcel dev:hugo",
"dev:hugo": "cross-env NODE_ENV=development hugo server --gc --disableFastRender --navigateToChanged",
"dev:parcel": "cross-env NODE_ENV=development parcel watch ./assets/index.js --out-dir assets/output",
"build:assets": "cross-env NODE_ENV=development parcel build ./assets/index.js --out-dir assets/output --experimental-scope-hoisting --no-cache",
"deploy:assets": "cross-env NODE_ENV=production parcel build ./assets/index.js --out-dir assets/output --experimental-scope-hoisting --no-cache",
"build:hugo": "cross-env NODE_ENV=production hugo --gc --minify"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^3.0.0",
"@threespot/expand-toggle": "^1.6.2",
"airtable": "^0.10.1",
"autoprefixer": "^10.0.1",
"cross-env": "^7.0.2",
"mapbox-gl": "^1.12.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.8.1",
"postcss-cli": "^8.1.0",
"postcss-import": "^13.0.0",
"postcss-modules": "^3.2.2",
"rimraf": "^3.0.2",
"typeface-roboto": "^1.1.13"
}
}