-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "tic-tac-toe",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest ./src",
"coverage": "jest ./src --coverage"
},
"devDependencies": {
"@playwright/test": "^1.32.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react-swc": "^3.2.0",
"autoprefixer": "^10.4.14",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.21",
"standard": "^17.0.0",
"tailwindcss": "^3.2.7",
"vite": "^4.2.0"
},
"dependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-jest": "^29.5.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"eslintConfig": {
"extends": [
"./node_modules/standard/eslintrc.json"
],
"env": {
"jest": true
}
},
"repository": {
"url": "https://github.com/Ricky10B/tic-tac-toe.git",
"type": "git"
},
"homepage": "https://github.com/Ricky10B/tic-tac-toe#readme",
"bugs": {
"url": "https://github.com/Ricky10B/tic-tac-toe/issues"
}
}