forked from harman052/react-tutorial-solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "tic-tac-toe",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-scripts": "^5.0.1",
"source-map-explorer": "^2.5.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"eslint": "^8.14.0",
"eslint-plugin-react": "^7.29.4",
"prettier": "2.6.2",
"puppeteer": "^13.7.0"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --testPathIgnorePatterns=src/e2e-tests/",
"test:e2e": "react-scripts test --testPathPattern=src/e2e-tests/",
"eject": "react-scripts eject",
"prettify": "prettier .",
"lint": "eslint src",
"analyze": "source-map-explorer 'build/static/js/*.js' --html"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"homepage": "./"
}