-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "be-nc-news",
"version": "1.0.0",
"description": "bc-nc-news",
"main": "./dist/listen.js",
"scripts": {
"lint": "tsc",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/listen.js",
"setup-dbs": "psql -f ./db/setup.sql",
"seed": "node ./dist/db/seeds/run-seed.js",
"seed-prod": "NODE_ENV=production pnpm seed",
"seed-prod-win": "SET NODE_ENV=production&& pnpm seed",
"test": "vitest run",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/northcoders/be-nc-news.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/northcoders/be-nc-news/issues"
},
"homepage": "https://github.com/northcoders/be-nc-news#readme",
"devDependencies": {
"@types/pg": "^8.11.10",
"@types/pg-format": "^1.0.5",
"@types/supertest": "^6.0.2",
"husky": "^8.0.3",
"pg-format": "^1.0.4",
"supertest": "^6.3.4",
"typescript": "^5.6.2",
"vitest": "^1.6.0"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"dotenv": "^16.4.5",
"fastify": "^5.0.0",
"pg": "^8.13.0"
}
}