-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"private": true,
"workspaces": [
"api",
"admin",
"beta",
"web"
],
"scripts": {
"schema": "graphql-codegen --config codegen.yml",
"dev": "nps dev",
"build:api": "NODE_ENV=production nps deploy.api",
"heroku-postbuild": "npm run build:api",
"build:web": "NODE_ENV=production nps deploy.web",
"build": "nps build",
"start": "nps start",
"prepare": "husky install",
"postinstall": "patch-typed-document-node"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"dotenv-safe": "^8.1.0",
"lodash": "^4.17.21",
"next": "^12.1.0",
"nps": "^5.10.0",
"nps-utils": "^1.5.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typed-document-node": "^2.2.8",
"@graphql-codegen/typescript": "^2.4.8",
"@graphql-codegen/typescript-operations": "^2.3.5",
"@graphql-codegen/typescript-resolvers": "^2.6.1",
"@graphql-typed-document-node/core": "^3.1.1",
"@graphql-typed-document-node/patch-cli": "^3.0.9",
"graphql": "^15.5.0",
"husky": "^7.0.0",
"prettier": "^2.6.0",
"typescript": "^4.7.3"
},
"resolutions": {
"@types/express": "4.17.13",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"engines": {
"node": "20"
}
}