-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.77 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
{
"name": "todolist",
"version": "0.0.1",
"description": "Yet another TodoList app",
"main": "dist/main.js",
"scripts": {
"configure": "./scripts/configure.sh",
"build": "tsc -p tsconfig.dist.json",
"build:dev": "tsc -p tsconfig.json",
"db:reset": "prisma migrate reset --force",
"db:seed": "prisma db seed",
"lint": "eslint --ext .ts src/** test/**",
"dev": "npm run build:dev && node build/src/main",
"prestart": "npm run build",
"start": "node dist/main",
"pretest": "npm run build:dev",
"test": "jest --runInBand"
},
"prisma": {
"seed": "node --loader ts-node/esm ./prisma/seed.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbuget/todolist.git"
},
"keywords": [
"Node.js",
"API"
],
"author": "Jérémy Buget <[email protected]>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/jbuget/todolist/issues"
},
"homepage": "https://github.com/jbuget/todolist#readme",
"engines": {
"node": ">=14.18.1 || >=16.13.0"
},
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.4",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.3",
"prisma": "^4.2.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"@prisma/client": "^4.2.1",
"awilix": "^7.0.3",
"fastify": "^4.5.2",
"fastify-metrics": "^9.2.1",
"pino": "^8.4.2",
"pino-pretty": "^9.0.1"
}
}