forked from stefanak-michal/cyphergui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2 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
{
"name": "@stefanak-michal/cyphergui",
"version": "1.1.3",
"private": false,
"homepage": ".",
"license": "Apache-2.0",
"author": {
"name": "Michal Stefanak",
"url": "https://www.linkedin.com/in/michalstefanak/"
},
"funding": "https://ko-fi.com/michalstefanak",
"engines": {
"node": ">=19"
},
"repository": {
"type": "git",
"url": "https://github.com/stefanak-michal/cyphergui.git"
},
"dependencies": {
"@memgraph/orb": "^0.4.3",
"@types/node": "^20.16.5",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"animate.css": "^4.1.1",
"bulma": "^1.0.2",
"gh-pages": "^6.1.1",
"mixpanel-browser": "^2.55.1",
"neo4j-driver-lite": "^5.24.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "^5.0.1",
"sass": "^1.78.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@eslint/js": "^9.10.0",
"@playwright/test": "^1.47.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"prettier": "^3.3.3",
"typescript-eslint": "^7.18.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"deploy": "gh-pages -d build",
"format": "npx prettier . --write",
"prettier-check": "npx prettier . --check",
"lint": "npx eslint src",
"playwright:ui": "npx playwright test --ui"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"singleQuote": true,
"proseWrap": "preserve",
"jsxSingleQuote": true,
"arrowParens": "avoid",
"printWidth": 120,
"endOfLine": "auto",
"overrides": [
{
"files": [
"*.json",
"*.yml"
],
"options": {
"tabWidth": 2
}
}
]
}
}