-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.66 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.66 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
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
79
80
81
82
83
84
85
86
{
"name": "@hexlet/code",
"version": "1.0.0",
"type": "module",
"description": "Task Manager",
"main": "./server/plugin.js",
"engines": {
"node": ">=18.x"
},
"scripts": {
"prebuild": "rm -rf dist",
"test": "jest --verbose --runInBand",
"build": "webpack",
"start": "fastify start server/plugin.js -l debug -P -o -a 0.0.0.0 -p ${PORT:-3000}",
"dev": "concurrently \"npm start -- --watch --verbose-watch --ignore-watch='node_modules .git .sqlite'\" \"npx webpack --watch --progress\"",
"migrate": "knex migrate:latest --env production",
"migrate:rollback": "knex migrate:rollback --env production"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/__tests__/helpers/"
],
"setupFiles": [
"dotenv/config"
]
},
"author": "German Mizkhatov",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/thedoorbell/fullstack-javascript-project-6.git"
},
"bugs": {
"url": "https://github.com/thedoorbell/fullstack-javascript-project-6/issues"
},
"homepage": "https://github.com/thedoorbell/fullstack-javascript-project-6#readme",
"dependencies": {
"@eslint/js": "^8.57.1",
"@fastify/formbody": "^7.0.1",
"@fastify/passport": "^2.3.0",
"@fastify/secure-session": "^5.2.0",
"@fastify/sensible": "^5.1.0",
"@fastify/static": "^6.5.0",
"@fastify/view": "^7.1.0",
"bootstrap": "^5.2.0",
"css-loader": "^6.7.1",
"dotenv": "^16.0.1",
"eslint-plugin-import": "^2.32.0",
"fastify": "^4.10.2",
"fastify-cli": "^5.1.0",
"fastify-error-page": "^4.0.0",
"fastify-method-override": "^1.5.9",
"fastify-objectionjs": "^1.0.0",
"fastify-reverse-routes": "^3.0.0",
"globals": "^16.5.0",
"i18next": "^21.9.1",
"jquery": "^3.6.0",
"knex": "^2.4.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"npm-check-updates": "^16.0.5",
"objection": "^3.0.1",
"objection-unique": "^1.2.2",
"pg": "^8.20.0",
"pug": "^3.0.2",
"qs": "^6.11.0",
"rollbar": "^3.1.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"devDependencies": {
"@faker-js/faker": "^10.3.0",
"@jest/globals": "^28.1.3",
"@stylistic/eslint-plugin": "^5.9.0",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.11",
"concurrently": "^9.2.1",
"eslint": "^9.39.3",
"eslint-plugin-jest": "^29.15.0",
"jest": "^28.1.3",
"jest-cli": "^28.1.3",
"pino-pretty": "^9.0.1",
"sqlite3": "^5.0.11",
"style-loader": "^3.3.1"
}
}