-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.65 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.65 KB
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
{
"name": "planpedia",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--openssl-legacy-provider' next dev",
"build": "NODE_OPTIONS='--openssl-legacy-provider' next build",
"start": "NODE_OPTIONS='--openssl-legacy-provider' next start",
"test": "yarn type-check",
"type-check": "tsc --noEmit",
"build:schema": "graphql-codegen --config codegen.yml"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"cookie": "^0.5.0",
"next": "10.2.3",
"next-auth": "^3.26.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "^3.39.2",
"sanitize-html": "^2.7.3"
},
"devDependencies": {
"@apollo/client": "^3.4.1",
"@contentful/rich-text-plain-text-renderer": "^15.1.0",
"@contentful/rich-text-react-renderer": "^15.1.0",
"@graphql-codegen/cli": "^1.21.5",
"@graphql-codegen/typescript": "^1.23.0",
"@graphql-codegen/typescript-graphql-request": "^3.2.1",
"@graphql-codegen/typescript-operations": "^1.18.0",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@next/bundle-analyzer": "^10.2.3",
"@types/cookie": "^0.5.1",
"@types/lodash": "^4.14.170",
"@types/react": "^17.0.6",
"@types/sanitize-html": "^2.6.2",
"autoprefixer": "^10.2.5",
"clsx": "^1.1.1",
"graphql": "^15.5.0",
"lodash": "^4.17.21",
"next-i18next": "^12.1.0",
"postcss": "^8.3.2",
"prettier": "^2.3.1",
"tailwindcss": "^2.1.4",
"typescript": "^4.8.4"
},
"engines": {
"node": "18.x || 20.x"
}
}