-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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": "mini-pokemon-go",
"version": "1.0.0",
"description": "A simple pokemon app made by nextjs",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc:check": "tsc -p tsconfig.json --noEmit",
"lint:fix": "npm run tsc:check && eslint . --ext .js,.jsx,.ts,.tsx ./ --fix",
"prettier:fix": "pretty-quick --staged",
"apollo:generate": "npx apollo client:codegen ./src/graphql/index.ts --target=typescript --outputFlat",
"prepare": "husky install"
},
"keywords": [
"pokemon",
"nextjs"
],
"author": "Muhammad Mugni Hadi",
"license": "ISC",
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run lint:fix",
"npm run prettier:fix"
]
},
"dependencies": {
"@apollo/client": "^3.5.7",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"graphql": "^16.2.0",
"graphql-tag": "^2.12.6",
"next": "^12.0.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intersection-observer": "^8.33.1",
"sweetalert2": "^11.3.6"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@emotion/babel-plugin": "^11.7.2",
"@next/eslint-plugin-next": "^12.0.8",
"@types/node": "^17.0.10",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"autoprefixer": "^10.4.2",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"lint-staged": "^12.2.0",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.0.15",
"typescript": "^4.5.4"
}
}