-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.7 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
{
"name": "spacekrypton",
"version": "0.0.1",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "dotenv -- turbo run dev --parallel",
"lint": "dotenv -- turbo run lint",
"build": "turbo run build",
"test": "dotenv -- turbo run test",
"seed": "dotenv -- turbo run seed",
"e2e": "dotenv -- turbo run e2e",
"start": "dotenv -- turbo run start",
"format": "prettier --write .",
"generate": "graphql-codegen",
"commit": "git-cz"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@graphql-codegen/cli": "^3.3.1",
"@graphql-codegen/client-preset": "^3.0.1",
"@graphql-codegen/typed-document-node": "^5.0.0",
"@graphql-codegen/typescript-operations": "^4.0.0",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@graphql-codegen/typescript-resolvers": "^3.2.1",
"axios": "^1.4.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^7.1.0",
"husky": "^8.0.3",
"prettier": "latest",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"turbo": "latest",
"typescript": "^5.0.4",
"winston": "^3.10.0"
},
"engines": {
"node": ">=18.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "yarn@3.5.0",
"dependencies": {
"date-fns": "^2.30.0",
"jest": "^29.5.0",
"react-spinners": "^0.13.8",
"yarn": "^1.22.19"
},
"resolutions": {
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"installConfig": {
"hoistingLimits": "none"
}
}