-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.64 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
{
"name": "scratch-project",
"version": "1.0.0",
"description": "This is for the birds",
"main": "server/server.js",
"scripts": {
"start": "nodemon server/server.js",
"test": "jest",
"dev": "SET NODE_ENV=development concurrently \"cross-env webpack-dev-server --open --hot --progress --color \" \"nodemon ./server/server.js\"",
"build": "webpack"
},
"nodemonConfig": {
"ignore": [
"build",
"client"
]
},
"keywords": [
"Birds",
"Binoculars",
"Best Scratch Group"
],
"author": "Me",
"license": "ISC",
"dependencies": {
"axios": "^0.25.0",
"babel-jest": "^27.5.1",
"bcrypt": "^5.0.1",
"browserify": "^17.0.0",
"express": "^4.17.2",
"jest": "^27.5.1",
"node-fetch": "^3.2.0",
"pg": "^8.7.1",
"prop-types": "^15.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.2",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^12.1.4",
"babel-loader": "^8.2.3",
"concurrently": "^6.0.2",
"cross-env": "^7.0.3",
"css-loader": "^6.5.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"isomorphic-fetch": "^3.0.0",
"node-sass": "^7.0.1",
"nodemon": "^2.0.7",
"sass": "^1.49.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3"
}
}