forked from institutoreditus/reditus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.32 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
{
"name": "reditus",
"version": "0.1.0",
"private": true,
"engines": {
"node": "14.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p $PORT",
"heroku-postbuild": "npm run build",
"test": "jest --runInBand",
"test-local": "docker-compose -f docker-compose.test.yml -p reditus_test up -d ; sleep 3; export DATABASE_URL=\"postgres://postgres:postgres@localhost:5433/reditus-test?schema=public&sslmode=disable\"; prisma migrate reset --force --preview-feature; jest --runInBand ; unset DATABASE_URL ; docker-compose -f docker-compose.test.yml -p reditus_test down; docker volume rm reditus_test_postgres_data_test",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"typecheck": "tsc --noEmit",
"migrate-deploy": "prisma migrate deploy --preview-feature",
"migrate-dev": "prisma migrate dev --preview-feature"
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/pickers": "^3.3.10",
"@prisma/client": "^2.16.1",
"@types/ejs": "^3.0.5",
"@types/nodemailer": "^6.4.0",
"@types/rox-browser": "^4.8.3",
"@types/rox-node": "^4.8.2",
"awilix": "^4.2.6",
"axios": "^0.21.1",
"computed-types": "^1.1.0",
"date-fns": "^2.22.1",
"ejs": "^3.1.5",
"ip": "^1.1.5",
"next": "^10.2.2",
"nodemailer": "^6.4.16",
"npm": "^7.5.2",
"pagarme": "^4.12.0",
"prisma": "^2.16.1",
"qs": "^6.9.4",
"react": "^16.13.1",
"react-dom": "16.13.1",
"react-number-format": "^4.4.1",
"react-step-wizard": "^5.3.2",
"rmwc": "^6.1.3",
"rox-ssr": "^5.0.1"
},
"devDependencies": {
"@types/gtag.js": "0.0.3",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@types/qs": "^6.9.3",
"@types/react": "^16.9.38",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.29.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.16.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.24.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5",
"uuid": "^8.3.0"
}
}