forked from DevShark-Iteration/Dev-Shark-V2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
{
"name": "scratch-project",
"version": "1.0.0",
"description": "Our scratch project",
"main": "src/server/server.js",
"scripts": {
"start": "cross-env NODE_ENV=production node src/server/server.js",
"build": "webpack",
"dev": "cross-env NODE_ENV=development concurrently \"nodemon src/server/server.js\" \"webpack-dev-server --open --hot\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoblinShark-LLC/Scratch-Project.git"
},
"author": "Nick, Fredo, Vivian, and Michael",
"license": "ISC",
"bugs": {
"url": "https://github.com/GoblinShark-LLC/Scratch-Project/issues"
},
"homepage": "https://github.com/GoblinShark-LLC/Scratch-Project#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-loader": "^8.1.0",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"dotenv": "^8.2.0",
"html-webpack-plugin": "^4.3.0",
"nodemon": "^2.0.4",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"axios": "^0.19.2",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.2.1",
"postgres": "^1.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"typescript": "^3.9.5"
}
}