-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
33 lines (33 loc) · 987 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": "linkace-website",
"description": "Source of the LinkAce website",
"author": "Kevin Woblick <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"algolia": "atomic-algolia",
"serve": "hugo serve -D --gc --bind 0.0.0.0",
"build": "npm run production && hugo",
"build-with-search": "npm run production && hugo && npm run algolia"
},
"dependencies": {
"algoliasearch": "^5.4.1",
"instantsearch.js": "^4.74.1",
"prismjs": "^1.25.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"atomic-algolia": "^0.3.19",
"autoprefixer": "^10.4.20",
"laravel-mix": "^6.0.49",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17"
}
}