-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.64 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
{
"name": "cv-frontend",
"version": "1.0.0",
"author": {
"name": "Alexandr Kim",
"email": "[email protected]"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"start": "cross-env TS_NODE_PROJECT=\"tsconfig-for-dev-server.json\" webpack server --open --config webpack.dev.ts",
"build": "cross-env TS_NODE_PROJECT=\"tsconfig-for-dev-server.json\" webpack --config webpack.prod.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest"
},
"devDependencies": {
"@testing-library/react": "^12.1.4",
"@types/html-webpack-plugin": "^3.2.6",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"eslint": "8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^16.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.7",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.13.0",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}