-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.1 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
{
"name": "javaee-without-spring",
"version": "1.0.0",
"scripts": {
"start": "parcel watch src/main/frontend/index.html --dist-dir target/classes/webapp",
"build": "npm run check && npm run build:parcel",
"build:parcel": "parcel build src/main/frontend/index.html --dist-dir target/classes/webapp",
"check": "npm run check:prettier && npm run check:typescript",
"check:prettier": "prettier --check src/main/frontend",
"check:typescript": "tsc --noEmit",
"prettier": "prettier --write src/main/frontend",
"clean": "rimraf .parcel-cache target/classes/webapp"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@parcel/transformer-html": "^2.9.3",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.3",
"parcel": "^2.9.3",
"prettier": "^3.0.3",
"process": "^0.11.10",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@mittwald/react-use-promise": "^1.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.15.0",
"uuid": "^9.0.0"
}
}