-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.66 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
47
48
49
50
51
52
53
{
"name": "fastify-starter",
"version": "1.0.0",
"description": "A starter for Fastify with Twig, Alpine, and Tailwind.",
"main": "app.js",
"config": {
"css": "tailwindcss -i bundle/main.pcss -o public/_compiled/main.bundle.css --postcss",
"js": "esbuild bundle/main.js --outfile=public/_compiled/main.bundle.js --bundle"
},
"scripts": {
"build": "NODE_ENV=production run-p build:*",
"build:css": "$npm_package_config_css --minify",
"build:js": "$npm_package_config_js",
"dev": "NODE_ENV=development npm-run-all -p dev:*",
"dev:fastify": "fastify start -w -l info -P app.js",
"dev:css": "$npm_package_config_css --watch",
"dev:js": "$npm_package_config_js --watch",
"key": "npx @fastify/secure-session > secret-key",
"start": "NODE_ENV=production fastify start -l info app.js",
"test": "tap tests/**/*.test.js"
},
"keywords": [],
"author": "Matt Waler",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.1.0",
"@fastify/formbody": "^7.0.1",
"@fastify/secure-session": "^5.2.0",
"@fastify/static": "^6.4.0",
"@fastify/view": "^7.0.0",
"alpinejs": "^3.0.6",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"dotenv": "^16.0.1",
"fastify": "^4.2.1",
"fastify-cli": "^4.3.0",
"fastify-plugin": "^4.0.0",
"htmx.org": "^1.4.1",
"mongoose": "^6.1.4",
"twig": "^1.15.4",
"validator": "^13.6.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"esbuild": "^0.14.9",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-import": "^14.0.2",
"tailwindcss": "^3.0.8",
"tailwindcss-debug-screens": "^2.0.0",
"tap": "^16.3.0"
}
}