-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.97 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.97 KB
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
{
"name": "pagecreator",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx run-many --target=build --projects=admin,node,user",
"test": "nx test",
"start:admin": "nx run pagecreator:serve",
"start:api": "nx run api:serve",
"start:front": "nx run front:serve",
"lint:admin": "nx lint:admin",
"build:admin": "nx run admin:build",
"lint:node": "nx run node:lint",
"build:node": "nx run node:build",
"dev": "nx run-many --target=serve --projects=api,pagecreator,front",
"start:user": "nx run user:serve",
"build:user": "nx run user:css && nx run user:build",
"css:user": "nx run user:css"
},
"private": true,
"dependencies": {
"@knovator/api": "^1.0.2",
"@knovator/image-resizer": "^0.1.0",
"classnames": "^2.3.1",
"core-js": "^3.6.5",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"express-list-endpoints-descriptor": "^1.0.13",
"image-size": "^1.0.2",
"ioredis": "^5.3.2",
"joi": "^17.6.0",
"lzutf8": "^0.6.3",
"mongoose": "^6.5.3",
"mongoose-paginate-v2": "^1.7.0",
"next": "13.0.6",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.2",
"react-hook-form": "^7.34.2",
"react-select": "^5.4.0",
"react-tabs": "^6.0.0",
"react-tiny-popover": "^7.2.0",
"react-transition-group": "^4.4.5",
"regenerator-runtime": "0.13.11",
"swiper": "^8.4.5",
"tslib": "^2.3.0"
},
"devDependencies": {
"@nrwl/cli": "15.3.0",
"@nrwl/cypress": "15.3.0",
"@nrwl/eslint-plugin-nx": "15.3.0",
"@nrwl/express": "15.3.0",
"@nrwl/jest": "15.3.0",
"@nrwl/linter": "15.3.0",
"@nrwl/next": "^15.3.0",
"@nrwl/node": "15.3.0",
"@nrwl/react": "15.3.0",
"@nrwl/web": "15.3.0",
"@nrwl/workspace": "15.3.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@tailwindcss/postcss": "^4.1.12",
"@testing-library/react": "13.4.0",
"@types/express": "4.17.14",
"@types/jest": "29.2.4",
"@types/node": "18.11.13",
"@types/react": "18.0.26",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "18.0.9",
"@types/react-transition-group": "^4.4.5",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"autoprefixer": "10.4.13",
"babel-jest": "29.3.1",
"cypress": "^12.0.2",
"eslint": "~8.29.0",
"eslint-config-next": "13.0.6",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "^2.10.3",
"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",
"jest": "29.3.1",
"nx": "15.3.0",
"postcss": "8.4.20",
"prettier": "^2.6.2",
"react-refresh": "^0.14.0",
"react-test-renderer": "18.2.0",
"tailwindcss": "^4.1.12",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "~4.9.4"
}
}