-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.53 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.53 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
{
"name": "website",
"version": "1.0.0",
"homepage": "https://www.thompsondevgroup.me",
"description": "Thompson Dev Group",
"repository": "",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public -s --port 3000",
"build:tailwind": "tailwind build public/assets/styles/index.css -o public/assets/styles/tailwind.css",
"build:fontawesome": "mkdir -p public/assets/vendor/@fortawesome/fontawesome-free/webfonts && mkdir -p public/assets/vendor/@fortawesome/fontawesome-free/css && cp -a ./node_modules/@fortawesome/fontawesome-free/webfonts public/assets/vendor/@fortawesome/fontawesome-free/ && cp ./node_modules/@fortawesome/fontawesome-free/css/all.min.css public/assets/vendor/@fortawesome/fontawesome-free/css/all.min.css",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && rm -rf public/build && npm install && npm run build:tailwind && npm run build:fontawesome && npm run dev"
},
"devDependencies": {
"@rollup/plugin-commonjs": "15.1.0",
"@rollup/plugin-node-resolve": "9.0.0",
"rollup": "2.28.1",
"rollup-plugin-livereload": "2.0.0",
"rollup-plugin-svelte": "6.0.1",
"rollup-plugin-terser": "7.0.2",
"svelte": "3.26.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "5.14.0",
"@popperjs/core": "2.5.1",
"@rollup/plugin-alias": "3.1.1",
"@tailwindcss/custom-forms": "0.2.1",
"chart.js": "2.9.3",
"nodemailer": "^6.4.17",
"sirv-cli": "1.0.6",
"svelte-routing": "1.4.2",
"tailwindcss": "1.8.10"
}
}