-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.49 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
{
"name": "app_template",
"description": "App template for full-stack datavisyn apps.",
"version": "0.0.1-SNAPSHOT",
"author": {
"name": "datavisyn GmbH",
"email": "[email protected]",
"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": "[email protected]: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",
"codegen:openapi": "npx @rtk-query/codegen-openapi ./src/codegen.ts",
"compile:watch": "visyn_scripts compile --watch -p tsconfig.lenient.json",
"compile": "visyn_scripts compile -p tsconfig.lenient.json",
"compile:strict:watch": "visyn_scripts compile --watch",
"compile:strict": "visyn_scripts compile",
"copy": "visyn_scripts copy",
"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",
"pw:open": "playwright test --ui",
"pw:run": "playwright test",
"predist": "yarn run lint && yarn run test && yarn run build",
"start": "visyn_scripts start --env workspace_mode=single",
"test": "visyn_scripts test",
"bundle:dev": "visyn_scripts bundle --mode development --env workspace_mode=single",
"bundle:prod": "visyn_scripts bundle --mode production --env workspace_mode=single"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.7",
"react-redux": "^8.1.3",
"visyn_core": "^13.0.0",
"visyn_scripts": "^11.1.1"
},
"devDependencies": {
"@playwright/test": "^1.46.1",
"@rtk-query/codegen-openapi": "^1.2.0",
"playwright": "^1.46.1"
},
"resolutions": {
"@types/react": "~18.2.0",
"@types/react-dom": "~18.2.0",
"react": "~18.2.0",
"react-dom": "~18.2.0"
},
"visyn": {
"entries": {
"app": {
"js": "src/index.initialize.tsx",
"template": "src/index.template.ejs",
"html": "index.html"
}
}
},
"packageManager": "[email protected]"
}