-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "wsh",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"lint": "next lint",
"start": "next start -p ${PORT:=3000}",
"export": "next build && next export",
"docker:build": "docker build . -t wsh-website",
"docker:run": "docker run -p 3000:3000 wsh-website"
},
"dependencies": {
"@apollo/react-hooks": "^4.0.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-context": "^1.0.20",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"graphql": "^15.5.0",
"graphql-tag": "^2.11.0",
"jwt-decode": "^3.1.2",
"moment": "^2.29.1",
"next": "^11.0.1",
"next-seo": "^4.26.0",
"next-with-apollo": "^5.1.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"remixicon": "^2.5.0",
"styled-components": "^5.3.0",
"use-sound": "^2.0.1"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.28.0",
"eslint-config-next": "^10.2.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"prettier": "^2.3.1",
"react-scripts": "^4.0.3",
"typescript": "^4.3.5"
}
}