-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "week11-12-rase",
"version": "0.1.0",
"private": true,
"scripts": {
"db:setup": "./scripts/db:setup",
"db:build": "./scripts/db:build",
"dev": "next dev",
"lint": "eslint .",
"build": "next build",
"start": "next start",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"dependencies": {
"babel-plugin-superjson-next": "^0.3.0",
"bcryptjs": "^2.4.3",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"crypto": "^1.0.1",
"dotenv": "^10.0.0",
"esri-leaflet-geocoder": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"leaflet": "^1.7.1",
"leaflet-defaulticon-compatibility": "^0.1.1",
"leaflet-geosearch": "^3.3.2",
"next": "10.2.3",
"pg": "^8.6.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-leaflet": "^3.2.0",
"styled-components": "^5.3.0",
"superjson": "^1.7.4"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.12.0",
"cypress": "^7.4.0",
"eslint": "^7.27.0",
"eslint-config-react-minimal": "^2.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react": "^7.24.0"
}
}