-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.2 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
{
"name": "frontend-challange",
"description": "Frontend Challenge",
"version": "1.0.2",
"license": "ISC",
"scripts": {
"start": "webpack-dev-server --open --config webpack/development.js",
"app": "node server.js",
"build": "run-s lint build:app",
"build:app": "webpack --config webpack/production.js",
"lint": "run-s lint:js lint:css",
"lint:js": "eslint --ext .js,.ts,.jsx,.tsx .",
"lint:css": "stylelint **/*.scss **/*.css",
"test": "jest"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@hot-loader/react-dom": "^16.13.0",
"@testing-library/dom": "^7.22.5",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"axios": "^0.20.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.2.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"html-loader": "^1.2.1",
"html-webpack-plugin": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"mini-css-extract-plugin": "^0.10.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hot-loader": "^4.12.21",
"react-router": "^5.2.0",
"sass-loader": "^9.0.3",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.18.0",
"ts-jest": "^26.2.0",
"ts-loader": "^8.0.2",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.2"
}
}