forked from connect-group/frontend-technical-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.91 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": "technical-test",
"version": "1.0.0",
"description": "",
"repository": "https://github.com/connect-group/frontend-technical-test",
"scripts": {
"start": "webpack serve --mode development",
"build": "webpack --mode production",
"test": "jest",
"test:watch": "npm run test -- --watch",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint \"src/**/*.js\" --fix",
"lint:css": "stylelint \"src/**/*.scss\" --fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@types/react-dom": "^18.0.5",
"@types/react": "^18.0.12",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"babel-eslint": "^8.1.2",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^5.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"html-webpack-plugin": "^4.5.1",
"jest": "^28.1.1",
"sass": "^1.32.5",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"stylelint": "^13.9.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"webpack": "^5.0.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "3.11.0"
},
"dependencies": {
"classnames": "^2.3.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
},
"browserslist": [
"last 2 chrome versions"
]
}