-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.22 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
{
"name": "queue",
"version": "1.0.0",
"description": "App to book university lessons using React, Express and SQLite.",
"private": true,
"license": "MIT",
"keywords": [
"app",
"queue",
"express",
"javascript",
"react",
"sqlite",
"typescript"
],
"browserslist": [
"last 7 versions",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": ">=10.0",
"npm": ">=6.0",
"yarn": ">=1.1.0"
},
"main": "src/index.tsx",
"proxy": "http://localhost:4001/api",
"directories": {
"test": "test"
},
"scripts": {
"build": "node ./buildScript",
"build-front": "react-scripts build",
"eject": "react-scripts eject",
"format": "prettier --write .",
"start-server": "nodemon server/server.js --watch server/*",
"start-front": "react-scripts start",
"start": "concurrently \"npm run start-server\" \"npm run start-front\" --kill-others --kill-others-on-fail",
"test": "cross-env NODE_ENV=testing mocha --exit",
"test-sonar-report": "cross-env NODE_ENV=testing mocha --reporter mocha-sonarqube-reporter --reporter-options output=xunit.xml --exit || exit 0",
"test-coverage": "cross-env NODE_ENV=testing nyc --reporter=lcov --reporter=text-lcov mocha test/*.js --exit || exit 0",
"test-full-reports": "concurrently \"npm run test-sonar-report\" \"npm run test-coverage\" --kill-others --kill-others-on-fail"
},
"dependencies": {
"@types/react-datepicker": "^3.1.1",
"axios": "0.19.2",
"bcrypt": "^5.0.0",
"body-parser": "1.19.0",
"bootstrap": "^4.5.3",
"compression": "1.7.4",
"cookie-parser": "^1.4.5",
"cors": "2.8.5",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"echarts": "^4.0.0",
"echarts-for-react": "^2.0.16",
"express": "4.17.1",
"express-jwt": "^6.0.0",
"fast-csv": "^4.3.6",
"file-saver": "^2.0.5",
"fullcalendar": "5.3.2",
"helmet": "3.22.0",
"iconv-lite": "^0.6.2",
"imap-simple": "5.0.0",
"install": "^0.13.0",
"jsonwebtoken": "^8.5.1",
"jspdf": "^2.2.0",
"knex": "0.20.13",
"mailparser": "^3.0.0",
"mailslurp-client": "^9.0.1",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-cron": "^2.0.3",
"nodemailer": "6.4.16",
"p5": "^1.2.0",
"papaparse": "^5.3.0",
"prettier": "^2.1.2",
"react": "16.13.1",
"react-bootstrap": "^1.0.1",
"react-bootstrap-icons": "^1.1.0",
"react-charts": "^2.0.0-beta.7",
"react-datepicker": "^3.3.0",
"react-dom": "16.13.1",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.1.6"
},
"devDependencies": {
"@fullcalendar/core": "5.3.1",
"@fullcalendar/daygrid": "5.3.1",
"@fullcalendar/interaction": "^5.3.1",
"@fullcalendar/react": "5.3.1",
"@fullcalendar/timegrid": "5.3.1",
"@types/express": "4.17.6",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.6",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"concurrently": "5.1.0",
"mocha": "^8.2.0",
"mocha-sonarqube-reporter": "^1.0.2",
"nodemon": "2.0.3",
"nyc": "^15.1.0",
"react-scripts": "3.4.1",
"sqlite3": "4.1.1",
"superagent": "^6.1.0",
"supertest": "^6.0.1",
"typescript": "3.8.3"
}
}