forked from frank-mck/pin-my-hike
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.59 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
{
"name": "pin-my-hike",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"devStart": "nodemon server",
"test": "jest",
"client": "cd client && npm start",
"start": "concurrently \"npm run devStart\" \"npm run client\"",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/frank-mck/pin-my-hike.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/frank-mck/pin-my-hike/issues"
},
"homepage": "https://github.com/frank-mck/pin-my-hike#readme",
"dependencies": {
"@react-google-maps/api": "^2.2.0",
"axios": "^0.21.1",
"concurrently": "^6.2.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"google-map-react": "^2.1.10",
"json-server": "^0.16.3",
"method-override": "^3.0.0",
"mongoose": "^5.13.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-maps": "^9.4.5",
"react-native": "^0.64.2",
"react-peer": "^0.2.6",
"react-router-dom": "^5.2.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"nodemon": "^2.0.12"
}
}