-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.65 KB
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
{
"name": "ramble-app",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"lint": "eslint . --ext .ts",
"start": "tsc && node dist/app.js",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ParisMonson/Ramble-App.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ParisMonson/Ramble-App/issues"
},
"homepage": "https://github.com/ParisMonson/Ramble-App#readme",
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/express": "^4.17.1",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"ava": "^4.3.3",
"cypress": "^10.7.0",
"eslint": "^8.23.0",
"eslint-plugin-ava": "^13.2.0",
"eslint-plugin-react": "^7.31.1",
"jest": "^29.0.2"
},
"dependencies": {
"@googlemaps/react-wrapper": "^1.1.35",
"@mapbox/polyline": "^1.1.1",
"@types/bcrypt": "^5.0.0",
"@types/cookie-session": "^2.0.44",
"@types/cors": "^2.8.12",
"@types/jsonwebtoken": "^8.5.9",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"ci": "^2.2.0",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.17.1",
"express-flash": "github:RGBboy/express-flash",
"express-session": "^1.17.3",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.9.0",
"mongoose": "^6.5.4",
"path": "^0.12.7",
"typescript": "^4.8.2"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": "tsc"
}
}
}