-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.18 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
{
"name": "svelte-demo-application",
"version": "0.1.0",
"private": true,
"description": "Description for SvelteDemoApplication",
"license": "UNLICENSED",
"type": "module",
"scripts": {
"build": "vite build",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"cleanup": "rimraf target/classes/static/",
"cy:open": "cypress open --e2e --browser chrome",
"e2e": "npm run e2e:ci -- --headed",
"e2e:ci": "cypress run --browser chrome",
"format": "prettier --write \"{,src/**/,cypress/**/}*.{md,json,js,svelte,css,html,yml}\"",
"lint": "eslint .",
"lint:fix": "npm run lint --fix",
"prepare": "husky install",
"preview": "vite preview",
"start": "vite dev --port 9000 --open true",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest src/main/webapp/",
"test:watch": "npm run test -- --watch",
"webapp:build": "npm run build",
"webapp:prod": "npm run build",
"webapp:test": "npm run test"
},
"config": {
"backend_port": "8080",
"default_environment": "prod",
"packaging": "jar"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "6.4.2",
"date-fns": "2.30.0"
},
"devDependencies": {
"@sveltejs/adapter-static": "2.0.3",
"@sveltejs/kit": "1.25.1",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/svelte": "4.0.3",
"autoprefixer": "10.4.16",
"cross-env": "7.0.3",
"cypress": "13.3.0",
"esbuild": "0.19.4",
"eslint": "8.50.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-jest-dom": "5.1.0",
"eslint-plugin-svelte": "2.33.2",
"eslint-plugin-testing-library": "6.0.2",
"generator-jhipster-svelte": "1.1.0",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-junit": "16.0.0",
"jest-sonar": "0.2.16",
"jhipster-svelte-library": "0.12.1",
"postcss": "8.4.31",
"prettier": "2.8.8",
"prettier-plugin-java": "2.1.0",
"prettier-plugin-organize-imports": "3.2.2",
"prettier-plugin-svelte": "2.10.1",
"pretty-quick": "3.1.3",
"rimraf": "5.0.5",
"svelte": "4.2.1",
"svelte-check": "3.5.2",
"svelte-jester": "3.0.0",
"tailwindcss": "3.3.3",
"vite": "4.4.9"
}
}