forked from SE-JE/venida
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "venida-platform",
"version": "1.0.0",
"description": "Venida Platform",
"main": "server.js",
"scripts": {
"build": "ts-node compiler.ts",
"venida": "node ./build/venida.js",
"start": "pm2 start venida.server.yaml",
"pm2": "pm2",
"debug": "npm run build && node ./build/venida.js server",
"watch": "ts-node watch.ts",
"cp-error-declaration": "cp ./declaration/error-declaration.json ./build/declaration/error-declaration.json",
"lint": "eslint . --ext .ts"
},
"author": "Org, SE-JE Digital",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.7.1",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"chokidar": "^3.5.3",
"eslint": "^8.26.0",
"pm2": "^5.2.0",
"ts-node": "^10.9.1",
"tsconfig": "^7.0.0",
"typescript": "^4.7.4",
"uglify-js": "^3.16.3"
},
"dependencies": {
"@fastify/compress": "^6.1.1",
"@fastify/formbody": "^7.3.0",
"@fastify/helmet": "^10.0.0",
"@fastify/multipart": "^7.4.0",
"dotenv": "^16.0.1",
"fastify": "^4.4.0",
"knex": "^2.3.0",
"mysql2": "^2.3.3",
"path-to-regexp": "^6.2.1"
}
}