-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "product-details-page",
"version": "1.0.0",
"description": "Front end capstone project",
"main": "./client/src/App.jsx",
"scripts": {
"server-dev": "nodemon server/index.js",
"client-dev": "webpack --watch",
"test-silent": "jest --silent --watch",
"test-loud": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beast-Technology/front-end-capstone.git"
},
"author": "Beast Technology",
"license": "ISC",
"bugs": {
"url": "https://github.com/Beast-Technology/front-end-capstone/issues"
},
"homepage": "https://github.com/Beast-Technology/front-end-capstone#readme",
"dependencies": {
"axios": "0.27.2",
"compression": "^1.7.4",
"dotenv": "16.0.1",
"express": "4.18.1",
"local-storage": "2.0.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"underscore": "1.13.3"
},
"devDependencies": {
"@babel/preset-env": "7.18.2",
"@babel/preset-react": "7.17.12",
"@testing-library/react": "13.2.0",
"babel-jest": "28.1.0",
"babel-loader": "8.2.5",
"compression-webpack-plugin": "^10.0.0",
"css-loader": "6.7.1",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "8.16.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-airbnb": "0.0.1-security",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"identity-obj-proxy": "3.0.0",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"nodemon": "2.0.16",
"react-test-renderer": "18.1.0",
"style-loader": "3.3.1",
"webpack": "5.72.1",
"webpack-cli": "4.9.2"
}
}