-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "transit-explorer",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cypress": "cypress open",
"test": "jest --watch",
"test:ci": "jest --ci",
"sync-data": "npx ts-node-esm src/scripts/syncData/index.ts",
"cli": "npx ts-node-esm src/cli/index.ts"
},
"prisma": {
"seed": "ts-node-esm prisma/seed/index.ts"
},
"dependencies": {
"@inquirer/prompts": "^2.1.0",
"@prisma/client": "^4.14.1",
"@types/node": "20.2.5",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"chalk": "^5.2.0",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"next": "13.4.4",
"node-fetch": "^3.3.1",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"cypress": "^12.14.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-mock-extended": "^3.0.4",
"prettier": "2.8.8",
"prisma": "^4.14.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1"
}
}