-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.78 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
{
"name": "living-app-v2-react-template",
"description": "Getting started with Living Apps 2.0: React project template",
"author": "[email protected]",
"license": "SEE LICENSE IN LICENSE",
"repository": "https://github.com/Telefonica/living-app-v2-react-template",
"private": true,
"type": "module",
"engines": {
"yarn": "use npm!"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/",
"prettier": "prettier --check '**/*.{js,cjs,mjs,ts,tsx,json,md,css,sass,scss}'",
"prettier:write": "prettier --write '**/*.{js,cjs,mjs,ts,tsx,json,md,css,sass,scss}'",
"test:unit": "jest --verbose --collectCoverage=false",
"test:coverage": "jest --collectCoverage",
"blue-ball": "npm run lint && npm run prettier && npm run test:unit && npm run build && npm pack --dry-run"
},
"dependencies": {
"@telefonica/living-apps-core-react": "latest",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@telefonica/living-apps-core-web-types": "latest",
"@telefonica/living-apps-eslint-config": "0.1.2",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@types/jest": "29.5.14",
"@types/react": "19.0.4",
"@types/react-dom": "19.0.2",
"@vitejs/plugin-legacy": "6.0.0",
"@vitejs/plugin-react-swc": "3.7.2",
"eslint": "8.57.1",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-transform-stub": "2.0.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"typescript": "5.7.3",
"vite": "6.0.7",
"vite-plugin-html": "3.2.2",
"vite-plugin-svgr": "4.3.0",
"vite-tsconfig-paths": "5.1.4"
}
}