-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.48 KB
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": "react-project-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npx parcel index.html",
"lint": "npx eslint . --ext .ts,.tsx",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smilee/react-project-template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/smilee/react-project-template/issues"
},
"homepage": "https://github.com/smilee/react-project-template#readme",
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@emotion/babel-plugin": "^11.9.2",
"@parcel/babel-preset-env": "^2.6.2",
"@swc/jest": "^0.2.22",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.5",
"@types/jest-plugin-context": "^2.9.5",
"babel-jest": "^28.1.3",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-plugin-context": "^2.9.0",
"parcel": "^2.6.2",
"process": "^0.11.10",
"react-test-renderer": "^18.2.0"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}