forked from DigitalFlow/Open-Certification-Trainer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.13 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
{
"name": "open-certification-trainer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tslint": "tslint -c tslint.json -p tsconfig.json",
"prebuild": "npm run tslint && cpx src/views/index.ejs dist/views && cpx \"src/lib/*.{css,js}\" dist/lib",
"build": "tsc -t ES6 -m commonjs --esModuleInterop --jsx react src/server.ts --outDir ./dist && webpack",
"prestart": "npm run build",
"start": "node dist/server.js",
"predebug": "npm run build",
"debug": "node inspect dist/server.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"base64url": "^3.0.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.2",
"bootstrap": "^3.4.1",
"chart.js": "^2.9.4",
"cookie-parser": "^1.4.6",
"cpx2": "^4.2.0",
"dotenv": "^16.0.0",
"ejs": "^3.1.6",
"express": "^4.17.3",
"express-jwt": "^6.1.1",
"helmet": "^5.0.2",
"history": "^4.10.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"react": "^17.0.2",
"react-bootstrap": "^0.33.1",
"react-chartjs-2": "^2.11.2",
"react-dom": "^17.0.2",
"react-markdown": "^6.0.3",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.2.0",
"react-select": "^5.2.2",
"sequelize": "^6.17.0",
"source-map-loader": "^3.0.1",
"ts-loader": "^9.2.7",
"tslint": "^6.1.3",
"uuid": "^8.3.2",
"validator": "^13.7.0",
"vhost": "^3.0.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/express-jwt": "^0.0.38",
"@types/history": "^4.7.6",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/pg": "^8.6.4",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.39",
"@types/react-bootstrap": "^0.32.9",
"@types/react-dom": "^17.0.13",
"@types/react-router-bootstrap": "^0.24.5",
"@types/react-router-dom": "^5.1.5",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.1",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}