-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.93 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.93 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
53
54
55
56
57
58
59
60
61
{
"name": "joaoteam-project-2",
"source": "src/index.html",
"version": "1.0.0",
"description": "The Polish on GitHub",
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html --public-url ./",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"test": "jest src --env=jsdom --coverage --coverageReporters=\"text-summary\"",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodersCamp2021/JoaoTeam-Project-2.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodersCamp2021/JoaoTeam-Project-2/issues"
},
"homepage": "https://github.com/CodersCamp2021/JoaoTeam-Project-2#readme",
"devDependencies": {
"@babel/plugin-syntax-jsx": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@babel/preset-react": "^7.16.7",
"@parcel/transformer-sass": "^2.2.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"all-contributors-cli": "^6.20.0",
"babel-jest": "^27.5.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"jest": "^27.4.7",
"parcel": "^2.2.1",
"prettier": "2.5.1"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"dependencies": {
"@swc/helpers": "^0.3.2",
"babel-cli": "^6.26.0",
"babel-preset-react-app": "^3.1.2",
"jest-fetch-mock": "^3.0.3",
"jest-html-reporter": "^3.4.2",
"msw": "^0.36.8",
"node-fetch": "^3.2.0",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
"regenerator-runtime": "^0.13.9",
"sass": "^1.49.4",
"styled-components": "^5.3.3",
"whatwg-fetch": "^3.6.2"
}
}