-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.13 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.13 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
36
{
"name": "cockroachmsg",
"version": "0.0.1",
"main": "src/app/server.ts",
"repository": "git@github.com:dexmendonca/cockroachmsg.git",
"author": "André Mendonça e Silva <dexmendoncadev@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"build": "rm dist -Rf && tsc -b && cp ./package.json ./dist/package.json && cp ./.env ./dist/.env && cp ./.env.example ./dist/.env.example ",
"dev": "npx nodemon --watch src --exec 'npx ts-node src/app/server.ts' -e ts,js,json"
},
"devDependencies": {
"@types/dotenv-safe": "^8.1.2",
"@types/node": "^16.11.7",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"nodemon": "^2.0.15",
"pm2": "^5.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"dotenv-safe": "^8.2.0",
"fastify": "^3.24.0",
"fastify-knexjs": "^1.4.0",
"knex": "^0.95.14",
"pg": "^8.7.1"
}
}