-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.75 KB
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
{
"name": "thumbnail-generator",
"packageManager": "yarn@3.2.3",
"description": "Boilerplate for new project",
"main": "src/index.tsx",
"scripts": {
"start": "webpack-dev-server --config ./webpack.dev.js --open",
"start:prod": "webpack-dev-server --config ./webpack.prod.js --open",
"build": "webpack --config ./webpack.dev.js",
"build:prod": "webpack --config ./webpack.prod.js"
},
"dependencies": {
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"dotenv": "^16.3.1",
"events": "^3.3.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"sass": "^1.56.1",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0"
},
"devDependencies": {
"@types/events": "^3",
"@types/node": "^18.8.3",
"@types/path-browserify": "^1",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"@yarnpkg/sdks": "^3.0.0-rc.30",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"css-loader": "^6.7.2",
"esbuild-loader": "^2.20.0",
"eslint": "latest",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "6",
"eslint-plugin-prettier": "^4.2.1",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.0",
"prettier": "^2.7.1",
"sass-loader": "^13.2.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
}
}