-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.33 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
{
"name": "messenger-app",
"version": "1.0.0",
"description": "Simple messenger app front end built with React",
"scripts": {
"start": "npm run start:dev",
"start:dev": "webpack serve --config=config/webpack.dev.js",
"start:prod": "npm run build && node config/server.prod.js",
"build": "npm run dist:clean && npm run dist:public && webpack --config=config/webpack.prod.js",
"dist:clean": "rimraf dist/*",
"dist:public": "cp -a public/. dist",
"lint": "eslint './src/**/*.{js,ts,tsx}' --quiet",
"test": "npm run test:watch",
"test:watch": "jest --watchAll --config=config/jest.json",
"test:cov": "jest --coverage --config=config/jest.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axiomzen/Nikita_Strelets_Senior_Frontend_Engineer_Assignment.git"
},
"keywords": [],
"author": "Nikita Streletss",
"license": "ISC",
"dependencies": {
"date-fns": "^2.22.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.17.2",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/runtime": "^7.14.6",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.12",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^5.3.1",
"image-webpack-loader": "^7.0.1",
"jest": "^27.0.4",
"mini-css-extract-plugin": "^1.6.0",
"node-sass": "^6.0.0",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"sass-loader": "^12.1.0",
"style-loader": "^2.0.0",
"typescript": "^4.3.4",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
}
}