-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.56 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
87
88
{
"name": "@innet/server",
"version": "2.0.1",
"description": "Create server-side application with innet",
"main": "index.js",
"module": "index.mjs",
"jsnext:main": "index.mjs",
"types": "index.d.ts",
"private": true,
"scripts": {
"build": "innetjs release -e",
"start": "innetjs start -n -i example/index",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"update": "npx npm-check-updates -i --format group",
"release": "innetjs release -p",
"patch": "innetjs patch",
"minor": "innetjs minor",
"major": "innetjs major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d8corp/innet-server.git"
},
"keywords": [
"innet",
"server",
"front-end"
],
"author": "Mikhail Lysikov <d8corp@mail.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/d8corp/innet-server/issues"
},
"homepage": "https://github.com/d8corp/innet-server",
"devDependencies": {
"@innet/jsx-runtime": "^1.0.4",
"@types/http-proxy": "^1.17.11",
"@types/jest": "^29.5.3",
"@types/mime": "^3.0.1",
"@types/node": "^20.4.4",
"@types/request-ip": "^0.0.38",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"core-js": "^3.31.1",
"eslint": "^8.45.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-newlines": "^1.3.4",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-newline-destructuring": "^1.2.1",
"eslint-plugin-perfectionist": "^2.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"innetjs": "^3.2.1",
"jest": "^29.6.1",
"jest-environment-jsdom": "^30.4.1",
"jest-util": "^29.6.1",
"ts-jest": "^29.4.11",
"typescript": "^5.9.3"
},
"dependencies": {
"@babel/code-frame": "^7.29.0",
"@cantinc/utils": "^1.4.4",
"@innet/jsx": "^2.1.3",
"@innet/node": "^0.0.1",
"@innet/utils": "^2.1.0",
"@types/multiparty": "^4.2.1",
"@types/qs": "^6.15.0",
"cookie": "^1.1.1",
"http-proxy": "^1.18.1",
"innet": "^2.1.1",
"mime": "^4.1.0",
"multiparty": "^4.2.3",
"openapi-types": "^12.1.3",
"qs": "^6.15.0",
"request-ip": "^3.3.0",
"string_decoder": "^1.3.0",
"tslib": "^2.8.1",
"uuid": "^13.0.0",
"watch-state": "^3.6.2"
}
}