-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.62 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
75
76
77
78
79
{
"name": "fe-training-forgotten-words",
"version": "1.0.0",
"description": "Remake of rs-school task, \"rs-lsng\"",
"private": true,
"main": "index.ts",
"browserslist": [
"> 0.2% and not dead"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --mode development",
"build": "cross-env NODE_ENV=production webpack --mode production --progress ",
"watch": "cross-env NODE_ENV=development webpack --watch --mode development",
"start": "cross-env NODE_ENV=development webpack serve --mode development",
"lint": "eslint --fix --ext .js,.jsx ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thirdmadman/fe-training-forgotten-words.git"
},
"author": "thirdmadman",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/thirdmadman/fe-training-forgotten-words/issues"
},
"homepage": "https://github.com/thirdmadman/fe-training-forgotten-words#readme",
"dependencies": {
"@reduxjs/toolkit": "^1.9.1",
"axios": "^1.2.1",
"normalize.css": "^8.0.1",
"plotly.js": "^2.16.3",
"plotly.js-basic-dist": "^2.16.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-loading-skeleton": "^3.1.0",
"react-plotly.js": "^2.6.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@types/plotly.js-basic-dist": "^1.54.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-plotly.js": "^2.5.2",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"autoprefixer": "^10.4.13",
"babel-eslint": "^10.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^4.2.2",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.2",
"postcss-loader": "^7.0.2",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}