-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 2.19 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
{
"name": "musicritic",
"version": "0.1.0",
"repository": "https://github.com/calluswhatyouwant/musicritic.git",
"contributors": [
"José Renan <joserenansl99@gmail.com> (https://github.com/JoseRenan)",
"Robson Junior <jrobsonjr16@gmail.com> (https://github.com/JRobsonJr)"
],
"scripts": {
"codegen": "graphql-codegen",
"predev:app": "yarn codegen",
"dev:app": "next dev",
"dev:emulator": "firebase --project=musicritic emulators:start --import=./.firebase_export --export-on-exit=./.firebase_export",
"clean": "rimraf .firebase_export",
"dev": "concurrently -n app,firebase,codegen \"yarn dev:app\" \"yarn dev:emulator\" \"yarn codegen -w\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.4.7",
"@emotion/react": "^11.4.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-regular-svg-icons": "^5.15.4",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@next-auth/firebase-adapter": "^0.1.2",
"@prisma/client": "^2.29.1",
"apollo-server-micro": "^3.1.1",
"axios": "^0.21.1",
"firebase": "^8.10.0",
"firebase-admin": "^9.11.0",
"graphql": "^15.5.1",
"micro": "^9.3.4",
"next": "11.1.0",
"next-auth": "^3.27.3",
"nprogress": "^0.2.0",
"qs": "^6.10.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intl": "^5.20.6",
"spotify-web-sdk": "^0.7.1",
"theme-ui": "^0.10.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.21.7",
"@graphql-codegen/typescript": "^1.23.0",
"@graphql-codegen/typescript-operations": "^1.18.4",
"@types/nprogress": "^0.2.0",
"@types/react": "17.0.14",
"@vtex/prettier-config": "^0.3.6",
"concurrently": "^6.2.0",
"eslint": "7.31.0",
"eslint-config-next": "11.0.1",
"eslint-config-vtex-react": "^8.1.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "4.3.5"
},
"lint-staged": {
"*.{tsx,ts,js}": "eslint --cache --fix",
"*.{tsx,ts,graphql,json,css,md}": "prettier --write"
}
}