forked from dalping/react-devfolio-board
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.06 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-devfolio-board",
"version": "1.0.0",
"description": "7day mini project",
"main": "index.js",
"scripts": {
"build": "webpack --mode=production",
"start": "webpack serve --mode=development",
"deploy": "npm run delete && aws s3 sync ./dist s3://velogclone-project --profile=sample-deploy-s3",
"delete": "aws s3 rm s3://velogclone-project/test --recursive --profile=sample-deploy-s3"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"quoteProps": "consistent",
"bracketSpacing": true,
"semi": true,
"endOfLine": "auto",
"arrowParens": "avoid"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dalping/react-devfolio-board.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dalping/react-devfolio-board/issues"
},
"homepage": "https://github.com/dalping/react-devfolio-board#readme",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^9.0.1",
"css-loader": "^6.5.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"postcss": "^8.3.11",
"postcss-loader": "^3.0.0",
"prettier": "2.4.1",
"raw-loader": "^4.0.2",
"react-refresh": "^0.10.0",
"style-loader": "^1.3.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.1",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"dependencies": {
"@ckeditor/ckeditor5-alignment": "^31.0.0",
"@ckeditor/ckeditor5-basic-styles": "^31.0.0",
"@ckeditor/ckeditor5-build-classic": "^31.0.0",
"@ckeditor/ckeditor5-dev-utils": "^25.4.5",
"@ckeditor/ckeditor5-editor-classic": "^31.0.0",
"@ckeditor/ckeditor5-essentials": "^31.0.0",
"@ckeditor/ckeditor5-font": "^31.0.0",
"@ckeditor/ckeditor5-heading": "^31.0.0",
"@ckeditor/ckeditor5-image": "^31.0.0",
"@ckeditor/ckeditor5-paragraph": "^31.0.0",
"@ckeditor/ckeditor5-react": "^3.0.3",
"@ckeditor/ckeditor5-theme-lark": "^31.0.0",
"@ckeditor/ckeditor5-upload": "^31.0.0",
"aws-sdk": "^2.1022.0",
"axios": "^0.24.0",
"dompurify": "^2.3.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.0",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"styled-components": "^5.3.3",
"util": "^0.12.4"
}
}