forked from gothinkster/realworld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
161 lines (161 loc) Β· 5.11 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "realworld",
"author": {
"name": "Thinkster"
},
"version": "1.2.0",
"license": "MIT",
"description": "Fullstack example codebases for React, Angular, Node, Django, Rails & more",
"repository": {
"type": "git",
"url": "git+https://github.com/gothinkster/realworld.git"
},
"bugs": {
"url": "https://github.com/gothinkster/realworld/issues"
},
"homepage": "https://github.com/gothinkster/realworld#readme",
"keywords": [
"react",
"angular",
"fullstack",
"examples",
"node"
],
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"prisma:migrate": "prisma migrate dev --skip-seed --schema=./apps/api/src/prisma/schema.prisma",
"prisma:format": "prisma format --schema=./apps/api/src/prisma/schema.prisma",
"prisma:generate": "prisma generate --schema=./apps/api/src/prisma/schema.prisma",
"prisma:generate:watch": "prisma generate --watch --schema=./apps/api/src/prisma/schema.prisma",
"prisma:studio": "prisma studio --schema=./apps/api/src/prisma/schema.prisma",
"prisma:reset": "prisma migrate reset --schema=./apps/api/src/prisma/schema.prisma",
"prettier:write": "npx prettier --write .",
"prettier:check": "npx prettier --check .",
"lint:check": "npx eslint apps/**/*.ts",
"lint:fix": "npx eslint --fix apps/**/*.ts",
"prepare": "husky install",
"storybook": "nx run demo:storybook",
"build-storybook": "nx run demo:build-storybook",
"chromatic": "npx chromatic"
},
"private": true,
"devDependencies": {
"@babel/core": "7.12.13",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "7.18.6",
"@docusaurus/module-type-aliases": "2.2.0",
"@hover/storybook-addon-pseudo-states": "^1.1.3",
"@mands/nx-playwright": "^0.1.20",
"@nrwl/cli": "15.3.0",
"@nrwl/eslint-plugin-nx": "15.3.0",
"@nrwl/express": "15.3.0",
"@nrwl/jest": "15.3.0",
"@nrwl/js": "15.3.0",
"@nrwl/linter": "15.3.0",
"@nrwl/node": "15.3.0",
"@nrwl/nx-cloud": "15.0.2",
"@nrwl/react": "15.3.0",
"@nrwl/storybook": "15.3.0",
"@nrwl/vite": "15.3.0",
"@nrwl/web": "15.3.0",
"@nrwl/webpack": "15.3.0",
"@nrwl/workspace": "15.3.0",
"@nx-plus/docusaurus": "^15.0.0-rc.0",
"@playwright/test": "1.26.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@storybook/addon-essentials": "~6.5.9",
"@storybook/builder-vite": "0.2.5",
"@storybook/core-server": "~6.5.9",
"@storybook/react": "~6.5.9",
"@svgr/webpack": "^6.1.2",
"@testing-library/react": "13.4.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/jest": "29.2.4",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "18.11.11",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.6",
"@types/react-is": "17.0.3",
"@types/react-router-dom": "5.3.3",
"@types/styled-components": "5.1.26",
"@types/swagger-ui-react": "^4.11.0",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/ui": "^0.9.3",
"babel-jest": "28.1.1",
"babel-loader": "8.1.0",
"babel-plugin-styled-components": "1.10.7",
"css-loader": "^6.4.0",
"eslint": "~8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.2",
"jest": "29.3.1",
"jest-environment-jsdom": "28.1.1",
"jest-mock-extended": "^3.0.1",
"jsdom": "~20.0.3",
"lint-staged": "^11.1.2",
"newman": "^5.3.0",
"nx": "15.3.0",
"prettier": "^2.6.2",
"prisma": "^4.7.1",
"react-refresh": "^0.10.0",
"react-test-renderer": "18.2.0",
"style-loader": "^3.3.0",
"stylus": "^0.59.0",
"stylus-loader": "^7.1.0",
"swagger-ui-react": "^4.15.5",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4",
"url-loader": "^4.1.1",
"vite": "^3.0.5",
"vite-plugin-eslint": "^1.6.0",
"vite-tsconfig-paths": "^3.5.2",
"vitest": "^0.26.0",
"webpack": "^5.75.0",
"webpack-merge": "^5.8.0"
},
"lint-staged": {
"*.ts": []
},
"dependencies": {
"@docusaurus/core": "2.2.0",
"@docusaurus/preset-classic": "2.2.0",
"@mdx-js/react": "^1.6.22",
"@ngneat/falso": "^6.1.0",
"@prisma/client": "^4.7.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"clsx": "^1.2.1",
"core-js": "^3.6.5",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-jwt": "^8.2.0",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.0",
"playwright": "^1.28.1",
"prism-react-renderer": "^1.3.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "18.2.0",
"react-router-dom": "6.4.5",
"regenerator-runtime": "0.13.7",
"slugify": "^1.6.0",
"styled-components": "5.3.6",
"tslib": "^2.3.0"
},
"readme": "ERROR: No README data found!",
"_id": "[email protected]"
}