-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 968 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
31
32
33
{
"name": "jhx",
"version": "1.0.0",
"description": "",
"main": "eleventy.config.js",
"scripts": {
"sass": "sass --style=compressed src/scss/index.scss _site/style.css",
"dev": "npm-run-all sass --parallel dev:*",
"dev:parcel": "parcel watch src/js/index.tsx -d _site",
"dev:11ty": "eleventy --serve --input=src/pages",
"dev:sass": "npm run sass -- --watch",
"build": "npm-run-all sass build:*",
"build:parcel": "parcel build src/js/index.tsx -d _site",
"build:11ty": "ELEVENTY_ENV=production eleventy --input=src/pages"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.5",
"sass": "^1.38.0",
"typescript": "^4.4.2"
},
"dependencies": {
"@reach/dialog": "^0.16.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.3.0"
}
}