-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
102 lines (102 loc) · 2.55 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
{
"name": "npm-gui",
"version": "4.0.0-beta",
"description": "A graphical tool for managing javascript project dependencies.",
"keywords": [
"gui",
"npm",
"yarn",
"pnpm",
"view",
"client",
"dependencies",
"node_modules",
"packages",
"installer",
"manager"
],
"main": "index.js",
"module": "dist/module.js",
"files": [
"dist",
"bin"
],
"scripts": {
"prepack": "npm run build",
"dev:server": "ts-node-dev --files server/development.ts",
"dev:client": "parcel serve --target=client",
"dev": "npm-run-all -p dev:*",
"build": "rm -rf dist && parcel build --no-source-maps",
"lint:ts": "tsc",
"lint:eslint": "eslint . --ignore-path=.gitignore",
"lint:prettier": "prettier --check . --ignore-path=.gitignore",
"lint": "npm-run-all lint:* -p",
"test": "jest",
"ci:test": "env NODE_TEST=true npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/q-nick/npm-gui.git"
},
"author": "Paweł Stefański",
"license": "MIT",
"bugs": {
"url": "https://github.com/q-nick/npm-gui/issues"
},
"bin": {
"npm-gui": "index.js"
},
"homepage": "https://npm-gui.nullapps.dev",
"devDependencies": {
"@tanstack/query-sync-storage-persister": "^4.22.4",
"@tanstack/react-query": "^4.23.0",
"@tanstack/react-query-persist-client": "^4.23.0",
"@types/fs-extra": "v9.0.13",
"@types/jest": "^27.5.2",
"@types/node": "v11.15.54",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@types/supertest": "^2.0.12",
"eslint-config-turbocharge": "^0.1.8",
"fs-extra": "v10.1.0",
"jest": "^27.5.1",
"jest-extended": "^1.2.1",
"npm-run-all": "^4.1.5",
"open-iconic": "^1.1.1",
"parcel": "^2.8.3",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-router-dom": "^5.3.4",
"styled-components": "^5.3.6",
"supertest": "^6.3.3",
"ts-jest": "^27.1.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4",
"use-between": "^1.3.5"
},
"targets": {
"main": false,
"client": {
"source": "client/index.html",
"context": "browser",
"distDir": "dist"
},
"server": {
"source": "server/index.ts",
"context": "node",
"outputFormat": "commonjs",
"distDir": "dist"
}
},
"dependencies": {
"open": "^8.4.0"
},
"engines": {
"node": ">= 11.0.0",
"npm": ">= 6.0.0"
}
}