forked from ParabolInc/parabol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.85 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
{
"name": "parabol-action",
"description": "An open-source app for building smarter, more agile teams.",
"author": "Parabol Inc. <[email protected]> (http://github.com/ParabolInc)",
"license": "AGPL-3.0",
"version": "6.43.0",
"repository": {
"type": "git",
"url": "https://github.com/ParabolInc/parabol"
},
"homepage": "https://github.com/ParabolInc/parabol",
"bugs": {
"url": "https://github.com/ParabolInc/parabol/issues"
},
"engines": {
"node": "^16.9.1",
"yarn": "^1.22.5"
},
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "pm2-runtime start pm2.config.js",
"heroku-postbuild": "echo 'Skipping build'",
"build": "node scripts/prod.js",
"pg:build": "pgtyped -c ./packages/server/postgres/pgtypedConfig.js",
"pg:migrate": "node-pg-migrate -f ./packages/server/postgres/pgmConfig.js",
"pg:restore": "node ./scripts/toolbox/pgRestore.js",
"db:start": "docker-compose -f docker/dev.yml up -d",
"db:stop": "docker-compose -f docker/dev.yml down",
"db:create": "node scripts/toolbox/createMigration.js",
"db:migrate": "node scripts/migrate.js",
"deduplicate": "yarn yarn-deduplicate yarn.lock",
"postdeploy": "node scripts/toolbox/postDeploy.js",
"postmigrate": "node scripts/postDeployMigrate.js",
"dev": "node scripts/dev.js && pm2-runtime start pm2.dev.config.js",
"lint": "lerna run --parallel lint",
"newMutation": "yarn sucrase-node scripts/codeshift/newMutation.ts",
"typecheck": "lerna run --parallel --no-bail typecheck",
"update-schema": "node scripts/updateSchemaCLI.js",
"ultrahook": "export $(grep ^ULTRAHOOK_API_KEY .env | tr -d \"'\") && ultrahook -k $ULTRAHOOK_API_KEY dev 3000",
"precommit": "lerna run --stream precommit",
"postcommit": "git update-index --again",
"prepare": "husky install"
},
"resolutions": {
"typescript": "4.4.2",
"hoist-non-react-statics": "^3.3.0",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.4",
"immutable": "3.8.2"
},
"devDependencies": {
"@babel/preset-env": "7.16.0",
"@graphql-codegen/add": "^3.1.0",
"@graphql-codegen/cli": "^2.3.0",
"@graphql-codegen/typescript": "^2.4.0",
"@graphql-codegen/typescript-operations": "^2.2.0",
"@sucrase/webpack-loader": "^2.0.0",
"@types/jscodeshift": "^0.11.3",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"babel-loader": "8.2.3",
"graphql": "15.7.2",
"husky": "^7.0.4",
"jscodeshift": "^0.13.0",
"lerna": "^4.0.0",
"minimist": "^1.2.5",
"prettier": "^2.4.1",
"relay-compiler": "^12.0.0",
"relay-compiler-language-typescript": "^14.3.0",
"relay-config": "^12.0.0",
"ts-loader": "9.2.6",
"vscode-apollo-relay": "^1.5.0",
"webpack": "5.64.1",
"webpack-cli": "4.9.1",
"yarn-deduplicate": "^3.1.0"
}
}