-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.54 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "stock-data",
"version": "0.0.1",
"description": "Stock Data Web App + API",
"engines": {
"node": "16.x"
},
"main": "build/server/main.js",
"scripts": {
"start": "node build/server/main.js",
"dev": "nodemon node build/server/main.js",
"prebuild": "rimraf build cache/ts.build",
"build": "tsc -p tsconfig.json --diagnostics",
"postbuild": "tsc-alias",
"bnw": "npm run build",
"build:watch": "tsc -w",
"baw": "tsc-alias -w",
"bns": "npm run build && npm run start",
"predb": "rimraf build/server/database cache/ts.build && npm run build",
"db:create": "npm run predb && node .bin/exec . sequelize db:create",
"db:update": "npm run predb && npm run db:migrate && npm run db:seed",
"db:migrate": "node .bin/exec . sequelize db:migrate",
"db:migrate:undo": "node .bin/exec . sequelize db:migrate:undo:all",
"db:seed": "node .bin/exec . sequelize db:seed:all",
"db:seed:undo": "node .bin/exec . sequelize db:seed:undo:all",
"db:revert": "npm run predb && npm run db:seed:undo && npm run db:migrate:undo",
"lint": "eslint -c .eslintrc.js --ext .ts,.tsx --max-warnings 0",
"lint:fix": "npm run lint --fix",
"heroku-prebuild": "npm i && npm --prefix ./client install --force",
"heroku-postbuild": "npm run db:revert && npm run db:update && npm --prefix ./client run build",
"heroku-cleanup": "npm prune && rm -r ./client/node_modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/petarzarkov/stock-data.git"
},
"keywords": [
"stock",
"api",
"data"
],
"author": "Petar Zarkov",
"license": "MIT",
"bugs": {
"url": "https://github.com/petarzarkov/stock-data/issues"
},
"homepage": "https://github.com/petarzarkov/stock-data#readme",
"dependencies": {
"@fastify/cors": "8.1.0",
"@fastify/swagger": "8.0.0",
"@fastify/swagger-ui": "^1.0.3",
"@fastify/static": "6.5.0",
"config": "3.3.8",
"fastify": "4.8.1",
"fastify-plugin": "4.2.1",
"hot-utils": "1.4.8",
"pg": "8.8.0",
"reflect-metadata": "0.1.13",
"sequelize": "6.25.0",
"sequelize-typescript": "2.1.3",
"uuid": "9.0.0",
"ajv": "8.11.0",
"ajv-formats": "2.1.1"
},
"devDependencies": {
"@types/node": "18.8.5",
"@types/pg": "8.6.5",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"eslint": "8.25.0",
"rimraf": "3.0.2",
"nodemon": "2.0.20",
"sequelize-cli": "6.5.1",
"tsc-alias": "1.7.0",
"typescript": "4.8.4"
}
}