forked from aradzie/keybr.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.97 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
87
{
"private": true,
"name": "keybr.com",
"version": "0.0.0",
"homepage": "https://www.keybr.com",
"license": "GPL-3",
"author": "Aliaksandr Radzivanovich <[email protected]>",
"repository": {
"type": "git",
"url": "[email protected]:aradzie/keybr.com.git"
},
"workspaces": [
"packages/*",
"scripts"
],
"scripts": {
"postinstall": "husky install && patch-package",
"check": "node scripts/config-lint.js && node scripts/gen-translations.js && node scripts/gen-style-dts.js",
"clean": "lage clean --no-cache",
"compile": "lage compile --no-cache",
"test": "lage test --no-cache",
"lint": "eslint '{**/*,*}.{js,jsx,ts,tsx}' '.*.{js,jsx,ts,tsx}'",
"lint-fix": "eslint '{**/*,*}.{js,jsx,ts,tsx}' '.*.{js,jsx,ts,tsx}' --fix",
"stylelint": "stylelint '{**/*,*}.{less,css}'",
"stylelint-fix": "stylelint '{**/*,*}.{less,css}' --fix",
"format": "prettier '{**/*,*}.{js,jsx,ts,tsx,less,css}' --write",
"build": "env NODE_ENV=production webpack",
"build-dev": "env NODE_ENV=development webpack",
"watch": "env NODE_ENV=development webpack --watch",
"start": "env NODE_ENV=development node --enable-source-maps ./root/index.js"
},
"dependencies": {
"@fastr/client": "^0.0.20",
"@fastr/client-testlib": "^0.0.20",
"@fastr/controller": "^0.0.20",
"@fastr/core": "^0.0.20",
"@fastr/errors": "^0.0.20",
"@fastr/fake-http": "^0.0.20",
"@fastr/fetch": "^0.0.20",
"@fastr/headers": "^0.0.20",
"@fastr/invert": "^0.0.20",
"@fastr/lang": "^0.0.20",
"@fastr/middleware-body": "^0.0.20",
"@fastr/middleware-canonical": "^0.0.20",
"@fastr/middleware-compress": "^0.0.20",
"@fastr/middleware-conditional": "^0.0.20",
"@fastr/middleware-router": "^0.0.20",
"@fastr/middleware-session": "^0.0.20",
"@fastr/middleware-session-file-store": "^0.0.20",
"@fastr/middleware-static-files": "^0.0.20",
"@fastr/middleware-websocket": "^0.0.20",
"@fastr/status": "^0.0.20",
"@mdi/js": "^7.4.47",
"@sosimple/dom-to-image": "^0.2.0",
"@sosimple/fsx": "^0.1.0",
"@sosimple/fsx-file": "^0.1.0",
"@sosimple/fsx-lockfile": "^0.1.0",
"@sosimple/retry": "^0.1.0",
"clsx": "^2.1.1",
"commonmark": "^0.31.0",
"dotenv": "^16.4.5",
"knex": "^3.1.0",
"objection": "^3.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.6.5",
"react-test-renderer": "^18.2.0",
"tslib": "^2.6.2",
"xml-js": "^1.6.11",
"zod": "^3.23.3"
},
"devDependencies": {
"@formatjs/cli-lib": "^6.3.8",
"@formatjs/ts-transformer": "^3.13.12",
"@testing-library/dom": "^10.0.0",
"@testing-library/react": "^15.0.4",
"@testing-library/user-event": "^14.5.2",
"@types/commonmark": "^0.27.9",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/react-test-renderer": "^18.0.7",
"ava": "^5.3.1",
"confusing-browser-globals": "^1.0.11",
"typescript": "^5.4.5"
}
}