-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.39 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
{
"name": "app_template",
"description": "App template for full-stack datavisyn apps.",
"version": "0.0.1-SNAPSHOT",
"author": {
"name": "datavisyn GmbH",
"email": "contact@datavisyn.io",
"url": "https://www.datavisyn.io"
},
"license": "BSD-3-Clause",
"homepage": "https://www.datavisyn.io",
"bugs": {
"url": "https://github.com/datavisyn/app_template/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:datavisyn/app_template.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist",
"cypress"
],
"engines": {
"npm": ">=8",
"node": ">=16"
},
"scripts": {
"all": "yarn run lint:fix && yarn run test && yarn run build && yarn run dist",
"build": "yarn run clean && yarn run compile && yarn run copy",
"clean": "visyn_scripts clean build dist lib",
"compile:watch": "visyn_scripts compile --watch",
"compile": "visyn_scripts compile",
"copy": "visyn_scripts copy",
"cy:open": "cypress open",
"cy:run": "cypress run --e2e && cypress run --component",
"delete-dependencies": "visyn_scripts clean node_modules",
"dist": "mkdir lib && cd dist && tar cvzf ../lib/app_template.tar.gz *",
"docs": "visyn_scripts docs",
"lint:fix": "visyn_scripts lint --fix",
"lint": "visyn_scripts lint",
"prepack": "yarn run build",
"predist": "yarn run lint && yarn run test && yarn run build",
"start": "visyn_scripts start --env workspace_mode=single",
"test": "visyn_scripts test",
"webpack:dev": "visyn_scripts build --mode development --env workspace_mode=single",
"webpack:prod": "visyn_scripts build --mode production --env workspace_mode=single"
},
"dependencies": {
"@inlet/react-pixi": "6.8.0",
"@types/d3-hierarchy": "3.1.0",
"d3-hierarchy": "3.1.2",
"pixi.js": "6.5.5",
"visyn_core": "git+ssh://git@github.com:datavisyn/visyn_core#develop",
"visyn_scripts": "git+ssh://git@github.com/datavisyn/visyn_scripts#develop"
},
"devDependencies": {
"cypress": "^12.0.1"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"visyn": {
"entries": {
"app": {
"js": "src/index.initialize.tsx",
"template": "src/index.template.ejs",
"html": "index.html"
}
}
},
"packageManager": "yarn@3.2.2"
}