-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.03 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
{
"name": "@reactive-graph/website",
"private": true,
"version": "0.1.0",
"license": "MIT",
"author": "The reactive graph contributors",
"homepage": "https://www.reactive-graph.io/",
"keywords": [
"reactive-programming",
"graph-database"
],
"repository": {
"type": "git",
"url": "https://github.com/reactive-graph/design.git"
},
"bugs": {
"url": "https://github.com/reactive-graph/design/issues"
},
"engines": {
"node": ">=18",
"parcel": "2.x"
},
"packageManager": "pnpm@9.0.6",
"source": "src/index.html",
"targets": {
"default": {
"distDir": "./build"
}
},
"@parcel/transformer-css": {
"drafts": {
"nesting": true
}
},
"namers": [
"parcel-namer-without-hash"
],
"scripts": {
"dev": "./scripts/dist.sh; parcel",
"build": "./scripts/build.sh; parcel build"
},
"devDependencies": {
"parcel": "latest"
},
"dependencies": {
"@reactive-graph/design": "^0.1.5",
"lodash": "^4.17.21",
"underscore": "^1.13.7"
}
}