This repository has been archived by the owner on Oct 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.46 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
{
"name": "edukat",
"version": "0.0.1",
"private": true,
"scripts": {
"build:server": "tsc --project server/tsconfig.json",
"build": "next build && yarn build:server",
"knex": "ts-node --project server/tsconfig.json --transpile-only --require tsconfig-paths/register --require dotenv/config node_modules/knex/bin/cli.js --knexfile server/config/database.ts",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "yarn lint --fix",
"mrm": "mrm -i --preset @edukat/mrm-preset",
"setup": "yarn knex migrate:latest && yarn knex seed:run",
"setup:rollback": "yarn knex migrate:rollback --all",
"start": "node dist/index.js",
"start:dev": "node scripts/dev",
"start:debug": "node scripts/dev --inspect",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"typecheck": "yarn build:server --noEmit"
},
"dependencies": {
"@chakra-ui/icons": "^1.0.1",
"@chakra-ui/react": "^1.0.3",
"@chakra-ui/theme-tools": "^1.0.1",
"@emotion/react": "^11.1.2",
"@emotion/styled": "^11.0.0",
"@reduxjs/toolkit": "^1.4.0",
"argon2": "^0.27.0",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"class-transformer": "^0.3.1",
"class-transformer-validator": "^0.9.1",
"class-validator": "^0.12.2",
"compression": "^1.7.4",
"cron": "^1.8.2",
"express": "^4.17.1",
"framer-motion": "^3.0.0",
"handlebars": "^4.7.6",
"helmet": "^4.2.0",
"ioredis": "^4.19.2",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.12",
"luxon": "^1.25.0",
"next": "^10.0.3",
"nodemailer": "^6.4.16",
"pg": "^8.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.4.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@edukat/mrm-preset": "^0.0.1",
"@types/compression": "^1.7.0",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.9",
"@types/faker": "^5.1.4",
"@types/ioredis": "^4.17.8",
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.0",
"@types/luxon": "^1.25.0",
"@types/node": "^14.14.10",
"@types/nodemailer": "^6.4.0",
"@types/react": "^17.0.0",
"@types/react-redux": "^7.1.11",
"@types/rosie": "^0.0.38",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"commitizen": "^4.2.2",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"faker": "^5.1.0",
"husky": "^4.3.0",
"ioredis-mock": "^5.2.0",
"jest": "^26.6.3",
"jest-chain": "^1.1.5",
"jest-extended": "^0.11.5",
"lint-staged": "^10.5.2",
"mrm": "^2.5.13",
"nodemon": "^2.0.6",
"rewiremock": "^3.14.3",
"rosie": "^2.0.1",
"sqlite3": "^5.0.0",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}