forked from c2c-project/prytaneum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 2.02 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
{
"name": "prytaneum",
"private": true,
"workspaces": [
"app/*"
],
"scripts": {
"g:husky": "husky install",
"g:commit": "commit",
"g:dev": "yarn workspace @app/server generate && ts-node-dev -- ./scripts/dev.ts",
"g:dev-docker": "yarn workspace @app/server generate && yarn workspace @app/server prisma-db-push --accept-data-loss && ts-node-dev -- ./scripts/dev-docker.ts",
"g:dev-test": "yarn workspace @app/server generate && ts-node-dev -- ./scripts/test.ts",
"g:start-test-db": "yarn exec db/start-test-db.sh",
"g:start-test-db-ci": "yarn exec db/start-test-db-ci.sh",
"g:start-db": "yarn exec db/start-db.sh",
"g:stop-db": "yarn exec db/stop-db.sh",
"g:start-redis-ci": "yarn exec redis/start-redis-ci.sh",
"g:start-redis": "yarn exec redis/start-redis.sh",
"g:stop-redis": "yarn exec redis/stop-redis.sh",
"g:dev-cc2c": "yarn workspace @app/cc2c prisma-generate && yarn workspace @app/cc2c prisma-db-push-dev && yarn workspace @app/cc2c dev",
"g:codegen": "graphql-codegen --config codegen.yml"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/prompt-cli": "^17.3.0",
"@graphql-codegen/cli": "^2.15.0",
"@graphql-codegen/introspection": "^2.2.1",
"@graphql-codegen/typescript": "^2.8.3",
"@graphql-codegen/typescript-operations": "^2.5.8",
"@graphql-codegen/typescript-resolvers": "^2.7.8",
"@next/swc-darwin-arm64": "^13.4.19",
"@types/babel__core": "^7",
"@types/node": "^20.3.1",
"eslint": "^8.9.0",
"husky": "^6.0.0",
"prettier": "^2.5.1",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"dependencies": {
"concurrently": "^7.2.2",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"ts-node-dev": "^2.0.0"
},
"packageManager": "yarn@3.2.3"
}