forked from friendsFEC/Uniqlo-Clone-Quddad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.79 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
{
"name": "friends-fec",
"version": "1.0.0",
"description": "Team Friends' Front End Capstone project",
"private": true,
"scripts": {
"test": "jest",
"bundle": "webpack",
"client-dev": "webpack serve",
"lint": "npx eslint --ext .jsx client/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/friendsFEC/friends-fec.git"
},
"keywords": [
"React",
"eslint",
"babel",
"webpack",
"axios"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/friendsFEC/friends-fec/issues"
},
"homepage": "https://github.com/friendsFEC/friends-fec#readme",
"dependencies": {
"@babel/cli": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.18.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"axios": "^0.27.2",
"dateformat": "^5.0.3",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.4.0",
"underscore": "^1.13.4"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-syntax-jsx": "^7.18.6",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@testing-library/react": "^12.1.5",
"babel-jest": "^29.0.1",
"babel-loader": "^8.2.5",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"jsdom": "^20.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.4.0",
"underscore": "^1.13.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.1"
}
}