-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.74 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "kulmio",
"version": "0.4.0",
"dependencies": {
"@jsonurl/jsonurl": "1.1.7",
"@logdna/tail-file": "3.0.0",
"ajv": "8.12.0",
"ansi-to-react": "6.1.6",
"binary-search": "1.3.6",
"express": "4.18.3",
"immer": "9.0.16",
"lodash": "4.17.21",
"schematar": "2.2.0",
"socket.io": "4.7.5",
"split2": "4.2.0",
"uuid": "9.0.1",
"wtfnode": "0.9.1"
},
"license": "mit",
"author": {
"name": "Tapani Haka"
},
"repository": "BaronaGroup/kulmio",
"devDependencies": {
"@types/express": "4.17.21",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.13",
"@types/mkdirp": "1.0.2",
"@types/node": "18.19.61",
"@types/react": "18.2.74",
"@types/react-dom": "18.2.24",
"@types/split2": "4.2.3",
"@types/uuid": "9.0.8",
"@types/websocket": "1.0.10",
"@typescript-eslint/eslint-plugin": "7.5.0",
"@typescript-eslint/parser": "7.5.0",
"@vitejs/plugin-react": "4.2.1",
"autoprefixer": "10.4.20",
"eslint": "9.0.0",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"import-sort-style-module": "6.0.0",
"jest": "29.7.0",
"mkdirp": "1.0.4",
"nodemon": "3.1.7",
"npm-release": "1.0.0",
"postcss": "8.4.47",
"pre-commit": "1.2.2",
"pre-commit-eslint-and-prettier": "1.0.0",
"prettier": "2.8.8",
"prettier-plugin-import-sort": "0.0.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"socket.io-client": "4.7.5",
"tailwindcss": "3.4.14",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.4.4",
"vite": "5.2.14",
"websocket": "1.0.35",
"zod": "3.22.4"
},
"bin": "./bin/kulmio",
"scripts": {
"build": "ts-node src/backend/build-schemas && tsc --project tsconfig.json && vite build",
"prepare": "npm run build",
"release": "npm-release",
"test-local": "jest --forceExit",
"test": "npm run build && docker build --tag kulmio:test . && docker run --rm --init kulmio:test",
"lint": "eslint . --max-warnings=0 --ext=.ts,.tsx,.js",
"prettier": "prettier --check .",
"pre-commit-eslint-and-prettier": "pre-commit-eslint-and-prettier",
"dev": "vite",
"tsc": "tsc",
"preview": "vite preview"
},
"jest": {
"collectCoverageFrom": [
"/src/**/*.js"
],
"testMatch": [
"**/*-test.ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"setupFiles": [
"<rootDir>/src/backend/test/test-setup.ts"
],
"testEnvironment": "node"
},
"pre-commit": [
"pre-commit-eslint-and-prettier"
],
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}