-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.82 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "gridcrash",
"version": "0.1.0",
"private": true,
"main": "index.js",
"description": "This is a simple Tic-Tae-Toe Game",
"dependencies": {
"@reduxjs/toolkit": "^2.5.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"css-minimizer-webpack-plugin": "^7.0.0",
"framer-motion": "^10.16.4",
"image-webpack-loader": "^8.1.0",
"jest-fetch-mock": "^3.0.3",
"json-server": "^0.14.2",
"papaparse": "^5.4.1",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"react": "^19.0.0",
"react-app-rewire-workbox": "^2.0.1",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.1.1",
"react-scripts": "5.0.1",
"redux-mock-store": "^1.5.5",
"three": "^0.172.0",
"util": "^0.12.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "webpack-dev-server --mode development --open --hot",
"build": "cross-env NODE_ENV=production GENERATE_SOURCEMAP=false webpack --mode production --optimize-minimize",
"winBuild": "cross-env NODE_ENV=production set \"GENERATE_SOURCEMAP=false\" && webpack --mode production",
"analyze": "webpack-bundle-analyzer dist/stats.json",
"test": "jest --env=jsdom --coverage",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.{js,jsx}",
"format": "prettier --write \"src/**/*.{js,jsx,json,css}\"",
"serve": "serve -s dist",
"clean": "rimraf dist",
"prebuild": "npm run clean"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"ajv": "^7.2.4",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^11.1.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"react-app-rewired": "^1.6.2",
"rimraf": "^6.0.1",
"style-loader": "^3.3.3",
"webpack": "^5.88.2",
"webpack-clean-obsolete-chunks": "^0.4.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^4.15.1",
"workbox-webpack-plugin": "^4.3.1"
},
"author": "Chandan Kumar",
"license": "MIT",
"keywords": [
"Tic-Tae-Toe",
"game",
"react",
"app",
"pwa",
"git"
],
"config": {
"compression": "gzip"
},
"resolutions": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}