-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 973 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
38
{
"name": "upchess",
"version": "1.0.0",
"description": "Jeu d'échecs en ligne",
"main": "index.js",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"start": "node app.js",
"generate-docs": "jsdoc -c jsdoc-conf.json",
"serve-docs": "http-server ./docs"
},
"author": "",
"license": "ISC",
"dependencies": {
"@chrisoakman/chessboardjs": "^1.0.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"bootstrap": "^5.3.0-alpha3",
"chess.js": "^1.0.0-beta.4",
"connect-flash": "^0.1.1",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-session": "^1.17.3",
"jquery": "^3.6.4",
"memorystore": "^1.6.7",
"mongoose": "^7.0.0",
"nanoid": "^4.0.1",
"nodejs-nodemailer-outlook": "^1.2.4",
"socket.io": "^4.6.1"
},
"devDependencies": {
"clean-jsdoc-theme": "^4.2.7",
"http-server": "^14.1.1",
"jest": "^29.5.0",
"jsdoc": "^4.0.2"
}
}