-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.86 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
{
"name": "easyparking",
"version": "1.0.0",
"description": "Parking Helper",
"main": "index.js",
"scripts": {
"start": "nodemon server/server.js",
"build": "NODE_ENV=production webpack",
"dev": "concurrently \"NODE_ENV=development webpack-dev-server --open --hot --inline --progress --colors --watch --content-base ./\" \"nodemon ./server/server.js\"",
"test": "test jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scratch-21/easyparking.git"
},
"keywords": [
"Park",
"Spot"
],
"author": "Armidillo",
"license": "ISC",
"bugs": {
"url": "https://github.com/scratch-21/easyparking/issues"
},
"homepage": "https://github.com/scratch-21/easyparking#readme",
"jest": {
"globalSetup": "./jest-setup.js",
"globalTeardown": "./jest-teardown.js"
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"babel-jest": "^23.6.0",
"babel-loader": "^8.2.2",
"concurrently": "^4.1.0",
"css-loader": "^5.2.0",
"enzyme": "^3.7.0",
"enzyme-to-json": "^3.3.4",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-puppeteer": "^3.4.0",
"nodemon": "^2.0.7",
"puppeteer": "^1.9.0",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"supertest": "^3.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.11.2"
}
}