forked from PawFinder/PawFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "PawFinder",
"version": "1.0.0",
"description": "",
"main": "index.jsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon src/server.js",
"build": "cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=development concurrently \"nodemon src/server.js\" \"webpack serve\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/PawFinder/PawFinder.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PawFinder/PawFinder/issues"
},
"homepage": "https://github.com/PawFinder/PawFinder#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"style-loader": "^2.0.0",
"webpack": "^5.10.1",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"autoprefixer": "^10.1.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"nodemon": "^2.0.6",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"postcss": "^8.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"redux": "^4.0.5",
"styled-components": "^5.2.1",
"tailwindcss": "^2.0.2",
"webpack-dev-server": "^3.11.0"
}
}