-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.08 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.08 KB
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
{
"name": "portfolio",
"version": "1.0.0",
"description": "My portfolio",
"repository": "github:simon-instance/simon-instance.github.io",
"main": "index.js",
"scripts": {
"start:tailwind": "postcss src/tailwind.css -o build/tailwind.css -w",
"build:tailwind": "postcss src/tailwind.css -o build/tailwind.css",
"start": "npx snowpack dev",
"build": "npm run clean && npx snowpack build",
"clean": "rm -rf ./build",
"deploy": "rm -rf node_modules/.cache && gh-pages -d build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@snowpack/plugin-build-script": "^2.1.0",
"@snowpack/plugin-svelte": "^3.7.0",
"autoprefixer": "^10.2.5",
"gh-pages": "^6.1.1",
"lodash": "^4.17.21",
"postcss": "^8.2.9",
"postcss-cli": "^11.0.0",
"postcss-mixins": "^10.0.0",
"snowpack": "^3.8.8",
"svelte": "^3.21.0",
"svelte-fa": "^2.4.0",
"svelte-loader": "^3.1.0",
"svelte-navaid": "^0.1.1",
"svelte-preprocess": "^5.1.3",
"tailwindcss": "^2.1.1"
}
}