-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.71 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
{
"name": "RobinsJacket",
"private": true,
"scripts": {
"webpack": "webpack --watch --mode=development",
"postinstall": "webpack --progress",
"build": "webpack --config webpack.prod.js",
"test": "jest --mode=development"
},
"description": "RobinsJacket is a single-page full-stack app clone of Robinhood Markets",
"version": "1.0.0",
"main": "webpack.config.js",
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keely-lee/RobinsJacket.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/keely-lee/RobinsJacket/issues"
},
"homepage": "https://github.com/keely-lee/RobinsJacket#readme",
"engines": {
"node": "22.2.0",
"npm": "10.7.0"
},
"dependencies": {
"@babel/core": "^7.24.6",
"@reduxjs/toolkit": "^2.2.5",
"babel-loader": "^9.1.3",
"classnames": "^2.5.1",
"dotenv": "^16.4.5",
"node-polyfill-webpack-plugin": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.23.1",
"recharts": "^2.12.7",
"redux": "^5.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^3.1.0",
"sass": "^1.79.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@jest/globals": "^29.7.0",
"@redux-devtools/extension": "^3.3.0",
"@testing-library/react": "^16.0.0",
"babel-jest": "^29.7.0",
"install": "^0.13.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lodash": "^4.17.21",
"npm": "^10.8.2",
"prettier": "3.3.2"
}
}