-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
110 lines (110 loc) · 3.89 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
{
"private": true,
"name": "todo-list-manager",
"description": "",
"license": "",
"scripts": {
"start": "nest start",
"build": "run-p build:front build:nest",
"test": "jest --runInBand",
"dev": "run-s dev:migrate dev:start",
"lint": "eslint src app --ext ts,tsx",
"postinstall": "patch-package",
"typecheck": "tsc --noEmit",
"build:front": "run-s build:css build:remix",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"build:remix": "remix build",
"build:nest": "nest build",
"dev:start": "run-p dev:css dev:remix dev:nest",
"dev:remix": "remix watch",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"dev:nest": "nest start --watch",
"dev:migrate": "DATABASE_URL=postgresql://user:password@localhost:6060/todolistmanager-dev yarn prisma:migrate",
"dev:clean": "DATABASE_URL=postgresql://user:password@localhost:6060/todolistmanager-dev yarn prisma:reset",
"integration:clean": "DATABASE_URL=postgresql://user:password@localhost:6070/todolistmanager-integration yarn prisma:reset",
"e2e:run": "start-test e2e:app 3333 cypress:run",
"e2e:run:dev": "start-test e2e:app 3333 cypress:dev",
"e2e:app": "run-s build:front e2e:clean e2e:app:start",
"e2e:clean": "DATABASE_URL=postgresql://user:password@localhost:6080/todolistmanager-e2e yarn prisma:reset",
"e2e:app:start": "PORT=3333 DATABASE_URL=postgresql://user:password@localhost:6080/todolistmanager-e2e yarn nest start",
"e2e:seed": "DATABASE_URL=postgresql://user:password@localhost:6080/todolistmanager-e2e yarn prisma:seed",
"cypress:run": "cypress run",
"cypress:dev": "cypress open",
"prisma:migrate": "prisma migrate deploy",
"prisma:setup": "prisma generate",
"prisma:reset": "prisma migrate reset --force --skip-seed",
"prisma:seed": "prisma db seed"
},
"dependencies": {
"@nestjs/common": "8.4.4",
"@nestjs/core": "8.4.4",
"@nestjs/event-emitter": "1.1.1",
"@nestjs/platform-express": "8.4.4",
"@nestjs/serve-static": "^2.2.2",
"@prisma/client": "3.8.1",
"@radix-ui/react-checkbox": "^0.1.5",
"@radix-ui/react-dialog": "^0.1.7",
"@radix-ui/react-dropdown-menu": "0.1.6",
"@radix-ui/react-icons": "1.1.1",
"@radix-ui/react-popover": "^0.1.6",
"@radix-ui/react-tooltip": "^0.1.7",
"@remix-run/express": "1.5.1",
"@remix-run/node": "1.5.1",
"@remix-run/react": "1.5.1",
"@sendgrid/mail": "^7.7.0",
"bcrypt": "5.0.1",
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"classnames": "2.3.1",
"date-fns": "2.27.0",
"express": "4.17.3",
"fp-ts": "2.11.5",
"lodash.debounce": "^4.0.8",
"lodash.partition": "^4.6.0",
"patch-package": "^6.4.7",
"react": "17.0.2",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1",
"react-dom": "17.0.2",
"recoil": "^0.7.3",
"reflect-metadata": "0.1.13",
"reset.css": "2.0.2",
"rxjs": "7.5.5",
"uuid": "8.3.2"
},
"devDependencies": {
"@nestjs/cli": "8.2.5",
"@remix-run/dev": "1.5.1",
"@remix-run/eslint-config": "1.5.1",
"@testing-library/cypress": "8.0.2",
"@types/bcrypt": "5.0.0",
"@types/express": "4.17.13",
"@types/jest": "27.4.0",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.partition": "^4.6.7",
"@types/react": "17.0.24",
"@types/react-dom": "17.0.9",
"@types/uuid": "8.3.3",
"autoprefixer": "10.4.7",
"cypress": "9.2.1",
"eslint": "8.15.0",
"jest": "27.4.7",
"npm-run-all": "4.1.5",
"postcss": "8.4.13",
"prettier": "2.4.1",
"prettier-plugin-tailwindcss": "0.1.10",
"prisma": "3.8.1",
"start-server-and-test": "1.14.0",
"tailwindcss": "3.0.24",
"ts-jest": "27.1.2",
"ts-node": "10.7.0",
"typescript": "4.6.3"
},
"engines": {
"node": ">=14"
},
"sideEffects": false,
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}