-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 3.55 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"private": true,
"name": "codeit",
"version": "0.0.0",
"description": "An interactive coding playground",
"license": "MIT",
"scripts": {
"lint": "nx run-many --target lint --all -- --fix",
"start": "nx run playground:serveWithApi",
"build": "nx build",
"test": "nx test",
"migrate:reset": "prisma migrate reset --force",
"migrate:dev": "prisma migrate dev",
"studio": "prisma studio",
"spell": "cspell ./packages/**/*.{ts,tsx}",
"prepare": "./config/husky/prepare",
"preinstall": "npx only-allow pnpm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fullstacksjs/codeit.git"
},
"contributors": [
{
"name": "Alireza Safaeirad",
"email": "alireza.safaeirad@gmail.com",
"url": "https://github.com/frontendmonster/"
}
],
"dependencies": {
"@emotion/react": "11.7.1",
"@fullstacksjs/toolbox": "2.14.0",
"@graphql-codegen/typescript-urql": "3.5.3",
"@mantine/core": "3.6.11",
"@mantine/hooks": "3.6.11",
"@mantine/next": "3.6.11",
"@nrwl/next": "13.8.3",
"@prisma/client": "3.9.2",
"@urql/core": "2.4.3",
"core-js": "^3.0.0",
"express": "4.17.3",
"fp-ts": "2.11.8",
"fp-ts-contrib": "0.1.26",
"graphql": "15.8.0",
"graphql-helix": "1.11.0",
"graphql-tag": "2.12.6",
"io-ts": "2.2.16",
"io-ts-types": "0.5.16",
"monocle-ts": "2.3.12",
"newtype-ts": "0.3.5",
"next": "12.1.0",
"next-urql": "3.3.2",
"nexus": "1.2.0",
"ramda": "0.28.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "17.0.2",
"regenerator-runtime": "0.13.9",
"ts-pattern": "3.3.5",
"tslib": "^2.0.0",
"urql": "2.2.0"
},
"devDependencies": {
"@babel/core": "7.17.5",
"@babel/preset-env": "7.16.11",
"@babel/preset-typescript": "7.16.7",
"@fullstacksjs/eslint-config": "8.2.0",
"@fullstacksjs/tsconfig": "0.6.0",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/typescript-operations": "2.3.2",
"@nrwl/cli": "13.8.3",
"@nrwl/cypress": "13.8.3",
"@nrwl/devkit": "13.8.3",
"@nrwl/eslint-plugin-nx": "13.8.3",
"@nrwl/jest": "13.8.3",
"@nrwl/linter": "13.8.3",
"@nrwl/next": "13.8.3",
"@nrwl/node": "13.8.3",
"@nrwl/react": "13.8.3",
"@nrwl/storybook": "13.8.3",
"@nrwl/tao": "13.8.3",
"@nrwl/web": "13.8.3",
"@nrwl/workspace": "13.8.3",
"@storybook/addon-essentials": "~6.4.18",
"@storybook/builder-webpack5": "~6.4.18",
"@storybook/manager-webpack5": "~6.4.18",
"@storybook/react": "~6.4.18",
"@svgr/webpack": "6.2.1",
"@testing-library/react": "12.1.2",
"@testing-library/react-hooks": "7.0.2",
"@types/express": "4.17.13",
"@types/jest": "27.4.1",
"@types/node": "17.0.21",
"@types/ramda": "0.28.0",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"babel-jest": "27.5.0",
"babel-loader": "8.1.0",
"cspell": "5.18.5",
"cypress": "9.4.1",
"dotenv-cli": "5.0.0",
"eslint": "8.8.0",
"husky": "7.0.4",
"jest": "27.5.0",
"lint-staged": "12.3.3",
"prettier": "2.5.1",
"prisma": "3.9.2",
"react-test-renderer": "17.0.2",
"ts-jest": "27.1.3",
"ts-node": "10.5.0",
"tsconfig-paths": "3.12.0",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.5.5",
"url-loader": "^3.0.0",
"webpack": "5.69.1"
},
"volta": {
"node": "16.12.0"
},
"prisma": {
"schema": "apps/api/prisma/schema.prisma",
"seed": "ts-node --project tsconfig.base.json -r tsconfig-paths/register apps/api/prisma/seed.ts"
}
}