-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathpackage.json
32 lines (32 loc) · 895 Bytes
/
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
{
"name": "react-template",
"version": "1.0.0",
"description": "React boilerplate with jest & test-library/react",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html --open",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint ./src --ext .js,.jsx"
},
"author": "CalamityAdam",
"license": "ISC",
"dependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.18.0",
"@babel/preset-react": "^7.17.12",
"@ramseyinhouse/eslint-config": "^1.0.4",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"eslint": "^8.16.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"parcel": "^2.5.0"
}
}