-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.26 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
{
"name": "@innet/server",
"version": "1.7.1",
"description": "Create server-side application with innet",
"main": "index.js",
"module": "index.es6.js",
"jsnext:main": "index.es6.js",
"types": "index.d.ts",
"private": true,
"scripts": {
"build": "bin/release -rollup",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"patch": "bin/release -patch -rollup",
"minor": "bin/release -minor -rollup",
"major": "bin/release -major -rollup",
"size": "gzip-size --raw lib/innet.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/d8corp/innet-server.git"
},
"keywords": [
"innet",
"server",
"front-end"
],
"author": "Mikhail Lysikov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/d8corp/innet-server/issues"
},
"homepage": "https://github.com/d8corp/innet-server",
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/http-proxy": "^1.17.9",
"@types/jest": "^29.1.1",
"@types/mime": "^3.0.1",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"core-js": "^3.25.3",
"eslint": "^8.24.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"glob": "^8.0.3",
"gzip-size-cli": "^5.1.0",
"innet-jest": "^1.3.2",
"jest": "^29.1.2",
"jest-util": "^29.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.34.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@types/multiparty": "^0.0.33",
"@cantinc/utils": "^1.2.7",
"@innet/html": "^1.0.1",
"@innet/jsx": "^1.1.0",
"@innet/switch": "^1.0.0",
"@innet/utils": "^1.1.1",
"@types/cookie": "^0.5.1",
"@types/qs": "^6.9.7",
"cookie": "^0.5.0",
"http-proxy": "^1.18.1",
"innet": "^1.0.1",
"is-invalid-path": "^1.0.2",
"mime": "^3.0.0",
"multiparty": "^4.2.3",
"qs": "^6.11.0",
"tslib": "^2.4.0",
"watch-state": "^3.4.5"
}
}