-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.92 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
{
"name": "@hexlet/code",
"version": "0.1.0",
"type": "module",
"description": "Task manager",
"engines": {
"node": ">=16.x"
},
"scripts": {
"prebuild": "rm -rf dist",
"test": "jest --verbose --runInBand",
"build": "webpack",
"start": "fastify start -a 0.0.0.0 server/plugin.js -l debug -P"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/__tests__/helpers/"
],
"setupFiles": [
"dotenv/config"
]
},
"author": "Aidos",
"license": "ISC",
"dependencies": {
"@vscode/sqlite3": "^5.0.8",
"bootstrap": "^5.1.3",
"fastify": "^3.29.0",
"fastify-cli": "^3.1.0",
"fastify-error-page": "^4.0.0",
"fastify-formbody": "^5.3.0",
"fastify-method-override": "^1.5.8",
"fastify-objectionjs": "^1.0.0",
"fastify-passport": "^0.6.0",
"fastify-reverse-routes": "^3.0.0",
"fastify-secure-session": "^3.2.0",
"fastify-sensible": "^3.2.0",
"fastify-static": "^4.7.0",
"i18next": "^21.8.3",
"jquery": "^3.6.0",
"knex": "^2.0.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.6.0",
"npm-check-updates": "^13.0.1",
"objection": "^3.0.1",
"objection-unique": "^1.2.2",
"pg": "^8.8.0",
"pino-pretty": "^7.6.1",
"point-of-view": "^5.3.0",
"pug": "^3.0.2",
"qs": "^6.10.3",
"sqlite3": "^5.0.8",
"webpack": "^5.72.1"
},
"devDependencies": {
"@jest/globals": "^28.1.0",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"css-loader": "^6.7.1",
"dotenv": "^16.0.1",
"eslint": "^8.15.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.2",
"jest": "^28.1.0",
"jest-cli": "^28.1.0",
"pino-pretty": "^7.6.1",
"style-loader": "^3.3.1",
"webpack-cli": "^4.9.2"
}
}