-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.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
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
{
"name": "black-market",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack serve --port 3000",
"build": "NODE_ENV=production webpack",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TomFCarrion/black-market.git"
},
"author": "Tomas F. Carrion",
"license": "ISC",
"bugs": {
"url": "https://github.com/TomFCarrion/black-market/issues"
},
"homepage": "https://github.com/TomFCarrion/black-market#readme",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/dotenv-webpack": "^7.0.3",
"@types/jest": "^28.1.6",
"@types/react": "^18.0.15",
"@types/react-css-modules": "^4.6.4",
"@types/react-dom": "^18.0.6",
"@types/webpack-env": "^1.17.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"css-loader": "^6.7.1",
"dotenv-webpack": "^8.0.0",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.7.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"mini-css-extract-plugin": "^2.6.1",
"prettier": "^2.7.1",
"svg-url-loader": "^7.1.1",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"dependencies": {
"@types/react-router-dom": "^5.3.3",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"formik": "^2.2.9",
"react": "^18.2.0",
"react-css-modules": "^4.7.11",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"ts-node": "^10.9.1",
"yup": "^0.32.11"
}
}