-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
{
"name": "scalable-frontend-test-assignment",
"version": "1.1.0",
"description": "Test Assignment For Frontend Developers",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development webpack serve",
"build": "NODE_ENV=production webpack",
"test": "jest",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix",
"prepare": "husky install"
},
"author": "Scalable Frontend <[email protected]>",
"dependencies": {
"bootstrap": "^4.6.0",
"chart.js": "2.9.4",
"prop-types": "15.7.2",
"react": "16.14.0",
"react-bootstrap": "^1.5.2",
"react-dom": "16.14.0",
"react-router-dom": "5.2.0"
},
"devDependencies": {
"@babel/core": "7.13.14",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "7.13.12",
"@babel/preset-react": "7.13.13",
"@babel/runtime": "^7.13.10",
"@pmmmwh/react-refresh-webpack-plugin": "0.4.3",
"@testing-library/jest-dom": "5.11.10",
"@testing-library/react": "11.2.6",
"babel-loader": "8.2.2",
"copy-webpack-plugin": "8.1.1",
"css-loader": "^5.2.1",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"jest": "26.6.3",
"path": "0.12.7",
"react-refresh": "0.10.0",
"style-loader": "^2.0.0",
"webpack": "5.30.0",
"webpack-cli": "4.6.0",
"webpack-dev-server": "3.11.2"
}
}