-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.37 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
38
39
40
41
42
43
44
45
46
{
"name": "callandor",
"private": true,
"description": "Static customizable budgeting dashboard",
"version": "0.1.0",
"license": "0BSD",
"scripts": {
"develop": "npm run build:tailwind && gatsby develop",
"encrypt": "npx staticrypt public/index.html password -o public/index.html",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "run-p start:**",
"start:app": "yarn develop",
"build": "run-s build:**",
"build:tailwind": "postcss src/styles/base.css -o src/styles/tailwind.css",
"build:gatsby": "gatsby build",
"deploy": "npm run build && npm run encrypt"
},
"dependencies": {
"fontsource-turret-road": "^3.0.3",
"fontsource-ubuntu": "^3.0.9",
"gatsby": "^2.24.67",
"gatsby-plugin-manifest": "^2.4.35",
"gatsby-plugin-offline": "^3.2.33",
"gatsby-plugin-postcss": "^3.0.3",
"gatsby-source-filesystem": "^2.3.34",
"gatsby-transformer-json": "^2.4.14",
"postcss": "^8.1.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"tailwindcss": "^1.9.3"
},
"devDependencies": {
"npm-run-all": "^4.1.5",
"npx": "^10.2.2",
"postcss-cli": "^8.1.0",
"prettier": "2.1.2",
"staticrypt": "^1.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/cameron-yee/callandor"
},
"bugs": {
"url": "https://github.com/cameron-yee/callandor/issues"
}
}