-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.27 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
{
"name": "trivia-rocks",
"version": "1.0.0",
"description": "Trivia rocks! Technical challenge",
"main": "index.js",
"scripts": {
"start": "webpack serve --hot --open --port ${PORT:='auto'}",
"build": "webpack --config webpack.config.js --mode development",
"lint": "run-p lint:*",
"lint:ts": "eslint . --ext .ts,.tsx",
"lint:css": "stylelint '**/*.css'",
"test": "jest"
},
"keywords": [
"g2i",
"react",
"challenge"
],
"author": "Luca Morelli <[email protected]>",
"license": "ISC",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.17.0",
"@dr.pogodin/babel-plugin-react-css-modules": "^6.6.0",
"axios": "^0.25.0",
"camelcase-keys": "^7.0.2",
"clsx": "^1.1.1",
"dotenv": "^16.0.0",
"postcss": "^8.4.6",
"postcss-custom-selectors": "^6.0.0",
"postcss-easy-import": "^3.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.2.1",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-loader": "^8.2.3",
"css-loader": "^6.6.0",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.0",
"npm-run-all": "^4.1.5",
"postcss-nesting": "^10.1.2",
"react-refresh": "^0.11.0",
"style-loader": "^3.3.1",
"stylelint": "^14.3.0",
"stylelint-config-css-modules": "^2.3.0",
"stylelint-config-standard": "^24.0.0",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}