-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.49 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
{
"name": "coderscamp2021.project.javascript.harrypotterquiz",
"version": "1.0.0",
"description": "## Zespół projektowy: Zespół pracował w ramach kursu CodersCamp. Aplikację wykonali uczestnicy kursu z pomocą mentora. Zachęcamy do odwiedzenia profili członków zespołu, w celu zapoznania się z ich portfolio. #### Mentor:",
"main": "index.js",
"scripts": {
"start": "parcel -p 8080 watch index.html",
"build": "parcel build index.html --public-url ./",
"lint": "eslint \"src/**/*.js\" \"index.html\" \"styles/**/*.scss\" --quiet",
"format": "prettier --write \"src/**/*.js\" \"index.html\" \"styles/**/*.scss\"",
"clean": "rimraf .cache && rimraf coverage && rimraf dist && rimraf node_modules",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/WebSolutions2k21/CodersCamp2021.Project.JavaScript.HarryPotterQuiz.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WebSolutions2k21/CodersCamp2021.Project.JavaScript.HarryPotterQuiz/issues"
},
"homepage": "https://github.com/WebSolutions2k21/CodersCamp2021.Project.JavaScript.HarryPotterQuiz#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@testing-library/dom": "^7.26.6",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/user-event": "^12.2.2",
"babel-jest": "^26.5.0",
"cssnano": "^4.1.10",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^26.4.2",
"jest-fetch-mock": "^3.0.3",
"msw": "^0.21.3",
"parcel-bundler": "^1.12.5",
"parcel-plugin-static-files-copy": "^2.6.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"sass": "^1.44.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"testRegex": "(spec|test)[.]js",
"coverageDirectory": "../coverage",
"setupFiles": [
"./test/setupJest.js"
],
"collectCoverageFrom": [
"./src/**"
]
},
"dependencies": {
"home": "^2.0.0",
"i18n": "^0.13.4",
"i18next": "^21.6.4",
"i18next-browser-languagedetector": "^6.1.2",
"i18next-http-backend": "^1.3.1",
"ra": "^0.9.7",
"regenerator-runtime": "^0.13.9",
"src": "^1.1.2",
"ti": "^1.0.4"
}
}