-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 960 Bytes
/
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
{
"name": "essay-grader",
"version": "0.0.1",
"description": "An fun project for grading essays.",
"type": "module",
"main": "server.js",
"scripts": {
"build": "tsc",
"start": "node out/app.js",
"run": "tsc && node out/app.js"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/express-session": "^1.17.5",
"@types/node": "^18.11.9",
"@types/string-similarity": "^4.0.0",
"body-parser": "^1.20.1",
"dotenv": "^16.0.3",
"dotenv-webpack": "^8.0.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"google-auth-library": "^8.7.0",
"http": "^0.0.1-security",
"mongodb": "^4.12.1",
"mongoose": "^6.7.4",
"node-fetch": "^3.3.0",
"string-similarity": "^4.0.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@google-cloud/local-auth": "^2.1.0",
"ejs": "^3.1.8",
"googleapis": "^105.0.0",
"ts-node": "^10.9.1"
}
}