-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
{
"name": "pokedex",
"version": "1.0",
"author": "fjfalah ([email protected])",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest"
},
"dependencies": {
"@apollo/client": "^3.0.2",
"@apollo/react-hooks": "^4.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"graphql": "^15.3.0",
"graphql-tag": "^2.10.4",
"isomorphic-unfetch": "^3.0.0",
"jest-styled-components": "^7.0.2",
"next": "^9.4.4",
"next-with-apollo": "^5.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"shell-quote": "^1.7.2",
"styled-components": "^5.1.1",
"subscriptions-transport-ws": "^0.9.17",
"yarn": "^1.22.4"
},
"devDependencies": {
"@babel/preset-typescript": "^7.10.4",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.7",
"@types/next": "^9.0.0",
"@types/node": "^14.0.26",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"babel-jest": "^26.1.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^7.5.0",
"eslint-config-airbnb-typescript-prettier": "^3.1.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"next-compose-plugins": "^2.2.0",
"next-images": "^1.4.0",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/configTest.js"
]
}
}