-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.88 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.88 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
{
"name": "graffy-project",
"version": "0.16.0",
"description": "Graffy Project",
"type": "module",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/aravindet/graffy.git"
},
"scripts": {
"format": "biome check --write .",
"lint": "biome ci .",
"package": "./scripts/package.js",
"start": "node src/example/server.js",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_ENV=testing jest",
"pg:clean": "docker rm -f graffypg",
"pg:psql": "docker run --name pgrepl -e POSTGRES_PASSWORD=graffy -d postgres:alpine && until docker exec -it pgrepl psql -U postgres; do sleep 0.5; done ; docker rm -f pgrepl"
},
"workspaces": [
"src/*"
],
"author": "aravindet",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aravindet/graffy/issues"
},
"homepage": "https://graffy.org",
"devDependencies": {
"@babel/preset-react": "^7.28.5",
"@biomejs/biome": "^2.4.4",
"@faker-js/faker": "^10.3.0",
"@playwright/test": "^1.58.2",
"@testing-library/react": "^16.3.2",
"@types/debug": "^4.1.7",
"@types/jest": "^30.0.0",
"@types/pg": "^8.16.0",
"@types/react": "^19.2.14",
"@vitejs/plugin-react": "^5.1.4",
"debug": "^4.4.3",
"express": "^5.2.1",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"lodash": "^4.17.23",
"merge-async-iterators": "^0.2.1",
"nanoid": "^5.1.6",
"p-map": "^7.0.4",
"pg": "^8.18.0",
"prop-types": "^15.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-test-renderer": "^19.2.4",
"rimraf": "^6.1.3",
"sql-formatter": "^15.7.2",
"sql-template-tag": "^5.2.1",
"typescript": "^5.9.3",
"uuid": "^13.0.0",
"vite": "^7.3.1",
"ws": "^8.19.0",
"yargs": "^18.0.0"
},
"peerDependencies": {
"pg": "^8.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
}