forked from ParabolInc/parabol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.68 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
{
"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.2.1",
"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": "^14.10.0",
"yarn": "^1.15.2"
},
"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",
"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",
"postdeploy": "node scripts/toolbox/postDeploy.js",
"dev": "node scripts/dev.js && pm2-runtime start pm2.dev.config.js",
"lint": "lerna run --parallel lint",
"test": "start-server-and-test start http://localhost:3000 cypress",
"newMutation": "yarn sucrase-node scripts/codeshift/newMutation.ts",
"cypress": "yarn workspace parabol-cypress start",
"typecheck": "lerna run --parallel typecheck",
"update-schema": "node scripts/updateSchemaCLI.js",
"ultrahook": "export $(grep ^ULTRAHOOK_API_KEY .env | tr -d \"'\") && ultrahook -k $ULTRAHOOK_API_KEY dev 3000"
},
"resolutions": {
"typescript": "4.1.3",
"hoist-non-react-statics": "^3.3.0",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.4",
"relay-runtime": "https://github.com/mattkrick/relay/tarball/ea411fa5aa507b9c1082f12e6111bdea7186c817",
"immutable": "3.8.2"
},
"devDependencies": {
"@babel/preset-env": "7.12.11",
"@sucrase/webpack-loader": "^2.0.0",
"@types/jscodeshift": "^0.6.2",
"@typescript-eslint/eslint-plugin": "4.10.0",
"@typescript-eslint/parser": "4.10.0",
"babel-loader": "8.2.2",
"graphql": "15.4.0",
"husky": "^3.0.1",
"jscodeshift": "^0.7.0",
"lerna": "^3.19.0",
"minimist": "^1.2.5",
"prettier": "^1.19.1",
"relay-compiler": "^8.0.0",
"relay-config": "^8.0.0",
"ts-loader": "8.0.12",
"vscode-apollo-relay": "^1.5.0",
"webpack": "5.10.3",
"webpack-cli": "4.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit",
"post-commit": "git update-index --again"
}
}
}