-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.34 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "kodit",
"version": "1.0.0-beta.0",
"private": true,
"description": "Coding platform for practicing programming challenges",
"keywords": [
"coding",
"programming",
"automation",
"ide"
],
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/ICpEP-SE-TUPV/kodit/issues",
"email": "tupv.bscpe@tup.edu.ph"
},
"author": {
"name": "ICpEP.SE - TUPV",
"email": "tupv.bscpe@tup.edu.ph",
"url": "https://icpep-se-tupv.pages.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/ICpEP-SE-TUPV/kodit.git"
},
"main": "server/index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "webpack --env NODE_ENV=production",
"server": "node server/index.js",
"dev": "nodemon server/index.js -w server/",
"test": "echo 'No tests'",
"lint": "eslint src/**/*.ts src/**/*.tsx && standard server/**/*.js"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.22.7",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@codemirror/lang-cpp": "^6.0.2",
"@codemirror/lang-java": "^6.0.1",
"@reduxjs/toolkit": "^1.9.5",
"@svgr/webpack": "^6.3.1",
"@types/bootstrap": "^5.2.6",
"@types/luxon": "^3.3.1",
"@types/node": "^20.3.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/react-router-bootstrap": "^0.26.2",
"@uiw/codemirror-theme-vscode": "^4.21.9",
"@uiw/react-codemirror": "^4.21.9",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"babel-preset-react-app": "^10.0.1",
"bootstrap": "^5.3.1",
"bootstrap-icons": "^1.10.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"eslint": "^8.44.0",
"eslint-config-react-app": "^7.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"luxon": "^3.4.1",
"mini-css-extract-plugin": "^2.6.1",
"nodemon": "^2.0.22",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-dev-utils": "^12.0.1",
"react-dom": "^18.2.0",
"react-redux": "^8.1.2",
"react-router-bootstrap": "^0.26.2",
"react-router-dom": "^6.14.1",
"sass": "1.64.2",
"sass-loader": "^13.0.2",
"socket.io-client": "^4.7.2",
"source-map-loader": "^4.0.0",
"standard": "^17.0.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.5",
"typescript": "^5.1.6",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0"
},
"dependencies": {
"axios": "^1.6.0",
"bcrypt": "^5.1.1",
"better-sqlite3-multiple-ciphers": "^8.5.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.19.2",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.1",
"socket.io": "^4.7.2"
},
"eslintConfig": {
"extends": "react-app"
},
"babel": {
"presets": [
"react-app"
],
"plugins": [
[
"@babel/plugin-transform-private-methods",
{
"loose": true
}
],
[
"@babel/plugin-transform-private-property-in-object",
{
"loose": true
}
],
[
"@babel/plugin-transform-class-properties",
{
"loose": true
}
]
]
}
}