-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
90 lines (90 loc) · 2.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
{
"name": "reactrix",
"version": "1.0.0",
"description": "Analyticial Prototyping Tool for React",
"main": "./src/index.tsx",
"scripts": {
"build:client": "webpack --config webpack.config.client.js",
"build:server": "webpack --config webpack.config.server.js",
"start": "node ./dist/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/Reactrix.git"
},
"keywords": [],
"author": "Kevin Chung, Jay Heo, Tychicus Lee, Jonathan Tam",
"license": "ISC",
"bugs": {
"url": "https://github.com/oslabs-beta/Reactrix/issues"
},
"homepage": "https://github.com/oslabs-beta/Reactrix#readme",
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@mui/lab": "^5.0.0-alpha.63",
"@reduxjs/toolkit": "^1.7.1",
"chart.js": "^3.7.0",
"clone": "^2.1.1",
"cors": "^2.8.5",
"nanoid": "^3.1.30",
"passport": "^0.5.2",
"passport-github": "^1.1.0",
"passport-github2": "^0.1.12",
"path": "^0.12.7",
"pg": "^8.7.1",
"postgresql": "^0.0.1",
"react": "^17.0.2",
"react-chartjs-2": "^4.0.0",
"react-dnd": "^14.0.5",
"react-dnd-html5-backend": "^14.1.0",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1"
},
"devDependencies": {
"@hot-loader/react-dom": "^17.0.1+4.13.0",
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.2",
"@types/clone": "^2.1.1",
"@types/config": "^0.0.41",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node": "^17.0.8",
"@types/passport": "^1.0.7",
"@types/passport-github": "^1.1.7",
"@types/passport-github2": "^1.2.5",
"@types/path-type": "^3.0.1",
"@types/pg": "^8.6.3",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"axios": "^0.24.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^6.4.0",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"css-loader": "^6.5.1",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-session": "^1.17.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4",
"url-loader": "^4.1.1",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2",
"webpack-manifest-plugin": "^4.0.2",
"webpack-node-externals": "^3.0.0"
}
}