-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.06 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
{
"name": "attach_validation_fail",
"version": "1.0.0",
"description": "A small example to show attachValidation failing",
"main": "server.js",
"scripts": {
"build": "rimraf dist && npm run build:server && npm run build:client",
"build:client": "cross-env NODE_ENV=production vite build",
"build:server": "cross-env NODE_ENV=production vite build --ssr src/index.js",
"dev": "node --enable-source-maps server.js",
"dev:inspect": "node --inspect --enable-source-maps index.js",
"start": "cross-env NODE_ENV=production node --enable-source-maps server.js"
},
"author": "Erik Elverskog",
"license": "UNLICENSED",
"dependencies": {
"@fastify/compress": "^6.1.0",
"@fastify/cookie": "^8.3.0",
"@fastify/formbody": "^7.3.0",
"@fastify/static": "^6.4.1",
"@marko/fastify": "^1.1.1",
"events": "^3.3.0",
"fastify": "^4.7.0",
"fastify-plugin": "^4.2.1"
},
"devDependencies": {
"@marko/compiler": "^5.22.8",
"@marko/vite": "^2.3.9",
"cross-env": "^7.0.3",
"vite": "^3.1.6"
},
"type": "module"
}