This repository has been archived by the owner on Apr 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.17 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
{
"name": "white_places",
"description": "project management webapp",
"version": "1.0.0",
"license": "MIT",
"private": true,
"engines": {
"node": "^14.17.0",
"yarn": "^1.22.5"
},
"browserslist": [
"last 2 Chrome versions"
],
"repository": "https://github.com/goldentrash/netlify_test.git",
"author": "goldentrash <startoflateness@gmail.com>",
"scripts": {
"start": "npm-run-all --parallel watch:lambda start:client",
"start:client": "netlify dev",
"watch:lambda": "webpack watch --config lambda/webpack.dev.js",
"prebuild": "yarn run gen:codegen",
"build": "yarn run build:client && yarn run build:lambda",
"build:client": "webpack --config webpack.prod.js",
"build:lambda": "webpack --config lambda/webpack.prod.js",
"gen:codegen": "graphql-codegen --config .graphqlrc.yaml",
"test": "jest",
"check:type": "tsc --noEmit"
},
"dependencies": {
"@apollo/client": "^3.3.12",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@octokit/core": "^3.4.0",
"ajv": "^8.2.0",
"apollo-datasource-rest": "^0.12.0",
"apollo-server-lambda": "^2.21.0",
"classnames": "^2.3.1",
"faunadb": "^4.1.3",
"gotrue-js": "^0.9.29",
"graphql": "^15.5.0",
"graphql-tag": "^2.12.4",
"history": "^5.0.0",
"node-fetch": "^2.6.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-markdown": "^6.0.1",
"react-router": "^6.0.0-beta.0",
"react-router-dom": "^6.0.0-beta.0",
"react-syntax-highlighter": "^15.4.3",
"remark-gfm": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "1.21.1",
"@graphql-codegen/typescript": "1.21.0",
"@graphql-codegen/typescript-operations": "^1.17.15",
"@graphql-codegen/typescript-react-apollo": "^2.2.3",
"@graphql-codegen/typescript-resolvers": "^1.19.0",
"@netlify/functions": "^0.7.2",
"@testing-library/react": "^11.2.7",
"@types/css-mediaquery": "^0.1.1",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-syntax-highlighter": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-mediaquery": "^0.1.2",
"dotenv": "^10.0.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.0.0",
"husky": "^4.3.8",
"jest": "^27.0.3",
"lint-staged": "^10.5.4",
"netlify-cli": "2.54.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier-plugin-toml": "^0.3.1",
"source-map-loader": "^2.0.1",
"ts-jest": "^27.0.2",
"ts-loader": "^8.0.15",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.1.3",
"webpack": "^5.20.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpack-node-externals": "^2.5.2"
}
}