-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.56 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "simba",
"private": true,
"scripts": {
"dev": "next dev",
"dev:apps": "yarn app-store:generate-files --watch",
"build": "next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "eslint . --ext .ts,.js,.tsx,.jsx",
"check-types": "tsc --noemit",
"prettier": "prettier --write .",
"prepare": "husky install",
"pre-commit": "lint-staged",
"test": "yarn test:db:reset && node --inspect node_modules/.bin/jest --runInBand --testNamePattern",
"test:coverage": "yarn test:db:reset && node --inspect node_modules/.bin/jest --coverage",
"test:db:reset": "dotenv -e .env.test -- npx prisma migrate reset --force --skip-seed && dotenv -e .env.test -- npx prisma db push",
"app-store:generate-files": "ts-node --transpile-only cli/app-store-generate-files"
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.6",
"@next-auth/prisma-adapter": "^1.0.3",
"@prisma/client": "4.0.0",
"@tanstack/react-query": "^4.1.3",
"axios": "^0.25.0",
"dayjs": "^1.11.3",
"lodash": "^4.17.21",
"next": "12.0.8",
"next-auth": "^4.0.6",
"react": "17.0.2",
"react-confetti": "^6.1.0",
"react-dom": "17.0.2",
"react-globe.gl": "^2.22.1",
"react-select": "^5.3.2",
"react-youtube": "^9.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@faker-js/faker": "^6.0.0-alpha.7",
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.182",
"@types/node": "17.0.10",
"@types/react": "17.0.38",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"autoprefixer": "^10.4.2",
"babel-jest": "^27.4.6",
"chokidar": "^3.5.3",
"dotenv-cli": "^5.0.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"glob": "^8.0.3",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.3.1",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "4.0.0",
"tailwindcss": "^3.0.15",
"ts-node": "^10.9.1",
"typescript": "4.5.5"
},
"lint-staged": {
"./{*,{pages,components,helpers}/**/*}.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint"
],
"./prisma/schema.prisma": [
"prisma format"
]
},
"prisma": {
"seed": "ts-node ./prisma/seed.ts"
}
}