-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.48 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.48 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "spacebook",
"version": "dev",
"private": true,
"dependencies": {
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"moment": "^2.29.1",
"next": "^11.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-placeholder": "^4.0.3",
"tailwindcss": "^2.2.8",
"typescript": "^4.3.5"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"generate": "graphql-codegen --config codegen.yml"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@graphql-codegen/cli": "2.1.1",
"@graphql-codegen/introspection": "2.1.0",
"@graphql-codegen/typescript": "^2.1.1",
"@graphql-codegen/typescript-graphql-files-modules": "2.1.0",
"@graphql-codegen/typescript-graphql-request": "^4.1.1",
"@graphql-codegen/typescript-operations": "^2.1.1",
"@graphql-codegen/visitor-plugin-common": "^2.1.1",
"autoprefixer": "^10.3.3",
"eslint": "^7.32.0",
"eslint-config-next": "11.1.0",
"graphql": "^15.5.1",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"postcss": "^8.3.6",
"prettier": "^2.3.2"
}
}