-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "nyc-bus-app",
"version": "1.0.0",
"private": true,
"author": "Luis Estevez <contact@luisestevez.me>",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"cypress": "cypress open",
"test:cypress": "cypress run",
"test": "start-server-and-test dev http://localhost:3000 test:cypress"
},
"dependencies": {
"@turf/helpers": "^6.5.0",
"@turf/turf": "^6.5.0",
"dayjs": "^1.11.7",
"lodash": "^4.17.21",
"mapbox-gl": "^2.14.1",
"next": "13.4.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2"
},
"devDependencies": {
"@types/lodash": "^4.14.194",
"@types/mapbox-gl": "^2.7.11",
"@types/node": "20.1.7",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"cypress": "^12.13.0",
"dotenv": "^16.0.3",
"eslint": "8.40.0",
"eslint-config-next": "13.4.2",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"postcss": "8.4.23",
"prettier": "^2.8.8",
"start-server-and-test": "^2.0.0",
"typescript": "5.0.4"
}
}