-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) ยท 2.15 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
{
"name": "tf-sbti",
"version": "1.0.0",
"main": "index.js",
"author": "Elnyan",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=\"development\" TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack serve --open --config webpack.config.ts",
"build": "cross-env NODE_ENV=\"production\" TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --config webpack.config.ts",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx",
"deploy": "aws s3 sync --region ap-northeast-2 ./dist s3://$S3_BUCKET_NAME",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.13.5",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-router-dom": "^5.1.7",
"@types/webpack-dev-server": "^3.11.1",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.21.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^8.1.1",
"cross-env": "^7.0.3",
"css-loader": "^5.1.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.1.0",
"html-webpack-plugin": "^5.2.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.9",
"prettier": "^2.2.1",
"react-refresh": "^0.9.0",
"ts-node": "^9.1.1",
"typeface-noto-sans-kr": "^1.1.13",
"typescript": "~4.2.4",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.0.0-beta.2"
},
"dependencies": {
"@chakra-ui/react": "^1.3.3",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"core-js": "^3.9.0",
"firebase": "^8.2.9",
"framer-motion": "^4.1.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"recoil": "^0.2.0"
}
}