-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
115 lines (115 loc) · 3.66 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "recoil_todo",
"version": "0.0.1",
"description": "ToDo Application created using Recoil and React",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --progress",
"test": "jest",
"test:watch": "yarn run test --watch-all",
"coverage": "yarn run test --coverage",
"lint": "eslint --ext js,jsx .",
"build": "cross-env NODE_ENV=production webpack",
"cypress:open": "cypress open",
"cypress:run": "cypress run --browser chrome",
"cypress:record": "yarn run cypress:run --record",
"test:e2e": "start-server-and-test start http://localhost:8080 cypress:run",
"deploy": "gh-pages -d build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saseungmin/Recoil_ToDo.git"
},
"author": "Seungmin Sa",
"license": "MIT",
"bugs": {
"url": "https://github.com/saseungmin/Recoil_ToDo/issues"
},
"homepage": "http://saseungmin.github.io/Recoil_ToDo",
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@material-ui/core": "^4.11.3",
"axios": "^0.21.1",
"emotion": "^11.0.0",
"emotion-reset": "^3.0.0",
"facepaint": "^1.2.1",
"lodash": "4.17.21",
"notistack": "1.0.10",
"prop-types": "^15.8.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^6.15.4",
"react-responsive": "^8.2.0",
"react-spinners": "^0.10.6",
"react-toggle": "^4.1.2",
"react-tooltip": "^4.2.13",
"react-use": "^17.1.1",
"recoil": "0.7.7",
"universal-cookie": "^4.0.4"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@svgr/webpack": "^5.5.0",
"@swc/core": "1.3.101",
"@swc/jest": "0.2.29",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@types/facepaint": "1.2.5",
"@types/jest": "^26.0.20",
"@types/jest-plugin-context": "2.9.7",
"@types/lodash": "4.14.202",
"@types/node": "16",
"@types/react": "^17",
"@types/react-dom": "17",
"@types/react-responsive": "8.0.8",
"@types/react-toggle": "4.0.5",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"cypress": "^8.5.0",
"dotenv": "^8.2.0",
"dotenv-webpack": "^6.0.0",
"eslint": "8.29.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "5.10.1",
"eslint-plugin-unused-imports": "2.0.0",
"gh-pages": "^3.1.0",
"given2": "^2.1.7",
"html-webpack-plugin": "^4.5.1",
"husky": "^7.0.2",
"jest": "^26.6.3",
"jest-plugin-context": "^2.9.0",
"jest-svg-transformer": "^1.0.0",
"mini-css-extract-plugin": "^1.3.9",
"optimize-css-assets-webpack-plugin": "^6.0.0",
"start-server-and-test": "^1.14.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^4.2.3",
"ts-loader": "~8.2.0",
"typescript": "4.0.7",
"url-loader": "^4.1.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.2"
},
"packageManager": "yarn@4.0.2"
}