forked from devops329/jwt-pizza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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": "pizzashop",
"version": "1.0.0",
"description": "The world's first JWT Pizza",
"main": "index.js",
"license": "ISC",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test",
"test:coverage": "nyc --reporter=json-summary --reporter=text playwright test"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@playwright/test": "^1.48.0",
"@types/node": "^22.7.5",
"autoprefixer": "^10.4.19",
"nyc": "^17.1.0",
"playwright-test-coverage": "^1.2.12",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"typescript": "^5.5.4",
"vite": "^5.2.8",
"vite-plugin-istanbul": "^6.0.2"
},
"dependencies": {
"preline": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.3"
},
"prettier": {
"tabWidth": 2,
"overrides": [
{
"files": "*.yml",
"options": {
"tabWidth": 2
}
},
{
"files": "*.json",
"options": {
"tabWidth": 2
}
}
]
}
}