This repository has been archived by the owner on Sep 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.71 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
{
"name": "skole-frontend",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:skoleapp/skole-frontend.git",
"license": "UNLICENSED",
"author": "Skole",
"scripts": {
"dev": "NODE_OPTIONS='--max-old-space-size=4096' next dev -p 3001",
"build": "BUILD_DATE=\"$(date '+%Y-%m-%d')\" next build",
"start": "next start -p 3001",
"type-check": "tsc",
"format": "yarn prettier --write '**/*.{ts,tsx,js,json}' && yarn eslint . --ext .ts,.tsx,.js --fix",
"lint": "yarn prettier --check '**/*.{ts,tsx,js,json}' && yarn eslint . --ext .ts,.tsx,.js && yarn dpdm --tree=false --exit-code=circular:1 $(find src/)",
"update-deps:patch": "yarn upgrade",
"update-deps:latest": "yarn upgrade --latest",
"analyze": "ANALYZE=true yarn build",
"cypress:run": "cypress run",
"precypress:run": "rm -rf .nyc_output coverage"
},
"dependencies": {
"@apollo/client": "3.3.16",
"@cypress/code-coverage": "3.9.5",
"@fontsource/rubik": "4.2.2",
"@material-ui/core": "4.11.4",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "4.0.0-alpha.58",
"@next/bundle-analyzer": "10.0.5",
"apollo-upload-client": "14.1.3",
"babel-plugin-istanbul": "6.0.0",
"browser-image-compression": "1.0.14",
"clsx": "1.1.1",
"dayjs": "1.10.4",
"formik": "2.2.6",
"graphql": "15.5.0",
"gray-matter": "4.0.3",
"next": "10.0.5",
"next-offline": "5.0.5",
"next-translate": "1.0.6",
"nprogress": "0.2.0",
"ramda": "0.27.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "6.0.1",
"remark-gfm": "1.0.0",
"wait-on": "5.3.0",
"yup": "0.32.9"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.4",
"@graphql-codegen/plugin-helpers": "1.18.5",
"@graphql-codegen/typescript": "1.22.0",
"@graphql-codegen/typescript-operations": "1.17.16",
"@graphql-codegen/typescript-react-apollo": "2.2.4",
"@types/apollo-upload-client": "14.1.0",
"@types/nprogress": "0.2.0",
"@types/ramda": "0.27.40",
"@types/react": "17.0.4",
"@types/react-dom": "17.0.3",
"@types/yup": "0.29.11",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"cypress": "7.2.0",
"dpdm": "3.6.0",
"eslint": "7.25.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"graphql-let": "0.17.1",
"prettier": "2.2.1",
"typescript": "4.2.4"
}
}