-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.42 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "poe.guide",
"version": "0.0.1",
"description": "A character progression planner for Path of Exile",
"main": "index.tsx",
"repository": "https://github.com/ludwigbacklund/poeguide.git",
"author": "Ludwig Bäcklund <[email protected]>",
"license": "UNLICENSED",
"sideEffects": false,
"scripts": {
"predev": "npm run generate-types",
"dev": "concurrently --restart-tries 5 --restart-after 5000 --names 'next,codegen' 'next' 'yarn generate-types --watch'",
"prebuild": "npm run generate-types",
"build": "next build",
"now-build": "next build",
"prestart": "npm run generate-types",
"start": "next start",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test:e2e": "server-test :3000 cypress:run",
"generate-types": "graphql-codegen --config codegen.yml"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@apollo/react-testing": "^3.1.3",
"@babel/core": "^7.6.4",
"@graphql-codegen/cli": "^1.8.2",
"@graphql-codegen/introspection": "1.8.2",
"@graphql-codegen/near-operation-file-preset": "^1.8.2",
"@graphql-codegen/typescript": "1.8.2",
"@graphql-codegen/typescript-operations": "^1.8.2",
"@graphql-codegen/typescript-react-apollo": "1.8.2",
"@testing-library/jest-dom": "^4.2.0",
"@testing-library/react": "^9.3.1",
"@types/jest": "^24.0.21",
"@types/lodash": "^4.14.144",
"@types/next": "^8.0.6",
"@types/react": "16.9.11",
"@types/react-autosuggest": "^9.3.13",
"@types/react-dom": "16.9.3",
"@types/react-redux": "^7.1.5",
"@types/slate": "^0.47.3",
"@types/slate-react": "^0.22.7",
"@types/styled-components": "4.1.20",
"@types/uuid": "^3.4.6",
"@types/webpack-env": "^1.14.1",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"@zeit/next-bundle-analyzer": "^0.1.2",
"@zeit/next-typescript": "1.1.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-plugin-styled-components": "1.10.6",
"concurrently": "^5.0.0",
"cypress": "^3.5.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-cypress": "^2.7.0",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"prettier": "1.18.2",
"start-server-and-test": "^1.10.6",
"typescript": "3.6.4",
"typescript-eslint-parser": "22.0.0",
"waait": "^1.0.5",
"webpack": "4.41.2"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"apollo": "2.21.0",
"apollo-boost": "^0.4.4",
"dotenv": "^8.2.0",
"easy-peasy": "^3.1.2",
"fontfaceobserver": "^2.1.0",
"graphql": "^14.5.8",
"immutable": "^4.0.0-rc.12",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.15",
"next": "9.1.1",
"next-redux-wrapper": "^4.0.1",
"next-with-apollo": "^4.3.0",
"react": "16.11.0",
"react-autosuggest": "^9.4.3",
"react-dom": "16.11.0",
"react-intersection-observer": "^8.25.1",
"slate": "^0.47.9",
"slate-react": "^0.22.10",
"styled-components": "^4.4.1",
"uuid": "^3.3.3"
}
}