-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.88 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
103
104
105
106
{
"name": "phovea_security_store_generated",
"description": "",
"version": "16.0.0",
"author": {
"name": "datavisyn GmbH",
"email": "contact@datavisyn.io",
"url": "https://datavisyn.io"
},
"license": "BSD-3-Clause",
"homepage": "https://datavisyn.io",
"bugs": {
"url": "https://github.com/datavisyn/phovea_security_store_generated/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/datavisyn/phovea_security_store_generated.git"
},
"scripts": {
"all": "npm run lint:fix && npm run test && npm run build && npm run dist",
"build": "npm run clean && npm run compile && npm run copy",
"clean": "rimraf 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",
"delete-dependencies": "rimraf node_modules",
"predist": "npm run lint && npm run test && npm run build",
"dist": "mkdir lib && cd dist && tar cvzf ../lib/phovea_security_store_generated.tar.gz *",
"docs": "visyn_scripts docs",
"lint:fix": "visyn_scripts lint --fix",
"lint": "visyn_scripts lint",
"start": "visyn_scripts start --env workspace_mode=single",
"storybook:build": "NODE_OPTIONS=--max_old_space_size=4096 build-storybook",
"storybook": "NODE_OPTIONS=--max_old_space_size=4096 start-storybook -p 6006",
"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"
},
"files": [
"src",
"dist",
"phovea_security_store_generated",
"__init__.py",
"__main__.py",
"requirements.txt",
"requirements_dev.txt",
"docker_packages.txt"
],
"dependencies": {
"tdp_core": "^23.0.2",
"visyn_scripts": "^7.0.1"
},
"resolutions": {
"@types/react": "~18.2.0",
"@types/react-dom": "~18.2.0",
"react": "~18.2.0",
"react-dom": "~18.2.0"
},
"main": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": {
"types": [
"./dist/index.d.ts",
"./src/index.ts"
],
"import": [
"./dist/index.js",
"./src/index.ts"
],
"default": [
"./dist/index.js",
"./src/index.ts"
]
},
"./phovea_registry": [
"./dist/phovea_registry.js",
"./src/phovea_registry.ts"
],
"./dist/phovea_registry": [
"./dist/phovea_registry.js",
"./src/phovea_registry.ts"
],
"./src/scss/*": [
"./dist/scss/*",
"./src/scss/*"
],
"./dist/scss/*": [
"./dist/scss/*",
"./src/scss/*"
],
"./package.json": "./package.json"
},
"engines": {
"npm": ">=8",
"node": ">=16"
},
"visyn": {
"entries": {
"app": "./src/index.js"
}
},
"packageManager": "yarn@3.2.2"
}