-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.3 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"devDependencies": {
"@flydotio/dockerfile": "^0.4.9",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/compression": "^1.7.3",
"@types/connect-history-api-fallback": "^1.5.1",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/node-cron": "^3.0.8",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-vue": "^5.2.0",
"@vitest/coverage-v8": "^2.0.0",
"@vue/test-utils": "^2.4.1",
"commitlint": "^17.7.1",
"commitlint-config-gitmoji": "^2.3.1",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"gitmoji-cli": "^8.5.0",
"happy-dom": "^15.10.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-toml": "^1.0.0",
"semantic-release": "^22.0.12",
"semantic-release-gitmoji": "^1.6.5",
"vite": "^5.0.0",
"vitest": "^2.0.0",
"vitest-mock-extended": "^2.0.2"
},
"dependencies": {
"@rollup/plugin-inject": "^5.0.3",
"axios": "^1.7.4",
"buffer": "^6.0.3",
"compression": "^1.7.4",
"connect-history-api-fallback": "^2.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^4.21.1",
"http-terminator": "^3.2.0",
"knex": "^2.5.1",
"node-cron": "^3.0.2",
"process": "^0.11.10",
"remult": "^0.27.22",
"sqlite3": "^5.1.6",
"tsx": "^3.12.10",
"typescript": "^5.2.2",
"uuid": "^9.0.1",
"vue": "^3.3.4",
"vue-router": "^4.2.4",
"vuex": "^4.1.0"
},
"overrides": {
"npm": "^10"
},
"engines": {
"node": "^20"
},
"name": "narf",
"prettier": {
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-toml"
],
"vueIndentScriptAndStyle": false
},
"private": true,
"scripts": {
"build": "vite build src/front-end",
"coverage": "npm test -- --coverage",
"coverage:back-end": "npm run test:back-end -- --coverage",
"coverage:front-end": "npm run test:front-end -- --coverage",
"start": "tsx src/back-end/index.ts",
"test": "vitest run",
"test:back-end": "vitest run test/back-end",
"test:front-end": "vitest run test/front-end",
"transform": "tsx src/tasks/transform.ts"
},
"type": "module",
"version": "1.14.0"
}