-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.33 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
{
"name": "@next-book/analytics",
"version": "0.0.3",
"description": "next-book's self-hosted analytics",
"main": "build/tracker.js",
"types": "build/tracker.d.ts",
"scripts": {
"build": "tsc",
"server": "node ./build/server.js",
"start": "npm run build && npm run server",
"dev": "nodemon -e ts -w ./src -x npm run start",
"devsrv": "nodemon -e ts -w ./src -x ts-node ./src/server",
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.3",
"jest-location-mock": "^1.0.9",
"nodemon": "^2.0.19",
"pino-pretty": "^8.1.0",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"ts-node": "^10.8.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@fastify/cors": "^8.1.0",
"@next-book/publisher": "^1.0.2",
"@types/ua-parser-js": "^0.7.36",
"dotenv": "^16.0.1",
"fastify": "^4.3.0",
"fastify-plugin": "^4.0.0",
"fastify-type-provider-zod": "^1.0.0",
"postgres": "^3.2.4",
"ua-parser-js": "^1.0.2",
"zod": "^3.17.10"
}
}