This repository has been archived by the owner on Jul 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 2.49 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
{
"name": "int3306-4-lms",
"version": "0.1.0",
"private": true,
"repository": {
"url": "https://github.com/QuangDuong120198/lms"
},
"engines": {
"node": "10.x",
"yarn": "1.x"
},
"scripts": {
"compose": "docker-compose up -d",
"rm-elassandra": "docker rm -f elassandra",
"test": "jest --verbose",
"eslint": "./node_modules/.bin/eslint",
"dev": "cross-env NODE_ENV=development nodemon server",
"build": "next build",
"start": "cross-env NODE_ENV=production node server",
"heroku-postbuild": "yarn build"
},
"dependencies": {
"@date-io/core": "1.3.11",
"@date-io/date-fns": "1.3.13",
"@date-io/dayjs": "1.3.11",
"@elastic/elasticsearch": "6",
"@hapi/joi": "16.1.8",
"@material-ui/core": "4.8.0",
"@material-ui/icons": "4.5.1",
"@material-ui/pickers": "3.2.7",
"bcrypt": "3.0.6",
"cassandra-driver": "4.3.1",
"clsx": "1.0.4",
"compression": "1.7.4",
"cookie-parser": "1.4.4",
"cookies": "0.8.0",
"cookies-js": "1.2.3",
"date-fns": "2.8.1",
"dayjs": "1.8.16",
"dotenv": "8.2.0",
"draft-js": "0.11.3",
"draft-js-export-html": "1.4.1",
"draft-js-import-html": "1.4.1",
"draft-js-utils": "1.4.0",
"express": "4.17.1",
"express-session": "1.17.0",
"formik": "2.0.8",
"helmet": "3.21.2",
"immutable": "3",
"isomorphic-unfetch": "3.0.0",
"lodash": "4.17.15",
"morgan": "1.9.1",
"mui-rte": "1.10.0",
"next": "9.1.6",
"nprogress": "0.2.0",
"passport-jwt": "4.0.0",
"prop-types": "15.7.2",
"react": "16.12.0",
"react-cookie": "4.0.1",
"react-countdown-now": "^2.1.2",
"react-dom": "16.12.0",
"react-redux": "7.1.1",
"react-scroll": "1.7.14",
"react-select": "3.0.8",
"reactstrap": "8.1.1",
"redux": "4.0.4",
"redux-persist": "6.0.0",
"redux-persist-cookie-storage": "1.0.0",
"redux-thunk": "2.3.0",
"universal-cookie-express": "4.0.1",
"yup": "0.27.0"
},
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/preset-env": "7.7.1",
"@types/jest": "24.0.22",
"@types/joi": "14.3.4",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"cross-env": "6.0.3",
"eslint": "6.6.0",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.0.2",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-react": "7.14.3",
"jest": "24.9.0",
"nodemon": "2.0.1",
"prettier": "1.18.2",
"typescript": "3.7.2"
}
}