-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.37 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
{
"author": "Enonic AS",
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-transform-arrow-functions"
]
},
"bugs": {
"url": "https://github.com/enonic/starter-react4xp/issues"
},
"contributors": [
"Christian Andreas Westgaard <cwe@enonic.com>",
"Espen Norderud"
],
"dependencies": {
"@enonic/js-utils": "^1",
"@enonic/react-components": "^5.0.1",
"cross-env": "^7.0.3",
"dayjs": "^1.11.13",
"node-fetch": "^3",
"prop-types": "^15",
"react": "^19",
"react-dom": "^19"
},
"devDependencies": {
"@babel/cli": "^7",
"@babel/compat-data": "^7",
"@babel/core": "^7",
"@babel/plugin-proposal-class-properties": "^7",
"@babel/plugin-proposal-object-rest-spread": "^7",
"@babel/plugin-transform-arrow-functions": "^7",
"@babel/preset-env": "^7",
"@babel/preset-react": "^7",
"@enonic-types/global": "^7",
"@enonic-types/lib-admin": "^7",
"@enonic-types/lib-app": "^7",
"@enonic-types/lib-auditlog": "^7",
"@enonic-types/lib-auth": "^7",
"@enonic-types/lib-cluster": "^7",
"@enonic-types/lib-common": "^7",
"@enonic-types/lib-content": "^7",
"@enonic-types/lib-context": "^7",
"@enonic-types/lib-event": "^7",
"@enonic-types/lib-export": "^7",
"@enonic-types/lib-grid": "^7",
"@enonic-types/lib-i18n": "^7",
"@enonic-types/lib-io": "^7",
"@enonic-types/lib-mail": "^7",
"@enonic-types/lib-node": "^7",
"@enonic-types/lib-portal": "^7",
"@enonic-types/lib-project": "^7",
"@enonic-types/lib-react4xp": "^4.0.0",
"@enonic-types/lib-repo": "^7",
"@enonic-types/lib-scheduler": "^7",
"@enonic-types/lib-schema": "^7",
"@enonic-types/lib-task": "^7",
"@enonic-types/lib-value": "^7",
"@enonic-types/lib-vhost": "^7",
"@enonic-types/lib-websocket": "^7",
"@enonic/react4xp": "^5.0.4",
"@swc/core": "^1",
"@types/react": "^19",
"babel": "^6",
"babel-loader": "^9",
"browser-sync": "^3",
"concurrently": "^9.1.2",
"css-loader": "^7",
"glob": "^11",
"mini-css-extract-plugin": "^2",
"npm-run-all": "^4",
"rimraf": "^6",
"sass": "^1",
"sass-loader": "^16",
"tslib": "^2",
"tsup": "^8",
"typescript": "^5",
"webpack": "^5",
"webpack-cli": "^5"
},
"homepage": "https://github.com/enonic/starter-react4xp#readme",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/enonic/starter-react4xp.git"
},
"scripts": {
"browserSync": "npx browser-sync start --proxy 'localhost:8080' --files build/resources/main/**/* --reload-delay 5000",
"build": "./gradlew build",
"build:react4xp": "npm explore @enonic/react4xp -- npm run build:react4xp",
"build:xp:resources": "npx tsup -d build/resources/main",
"clean": "rimraf build",
"deploy": "./gradlew deploy",
"deps": "./gradlew --refresh-dependencies",
"rewatch": "./gradlew clean deploy && ./gradlew -t deploy",
"verify:types": "concurrently -r npm:verify:types:*",
"verify:types:guillotineRequest": "npx tsc --noEmit -p tsconfig.guillotineRequest.json",
"verify:types:react4xp": "npx tsc --noEmit -p tsconfig.react4xp.json",
"verify:types:xp": "npx tsc --noEmit -p tsconfig.xp.nashorn.json",
"watch": "./gradlew -t deploy"
}
}