-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 988 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
39
40
{
"name": "gym-chain",
"version": "1.0.0",
"description": "",
"main": "start.mjs",
"scripts": {
"clean": "rm -rf node_modules",
"reinstall": "npm run clean && npm install",
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "node ./node_modules/nodemon/bin/nodemon.js --inspect ./start.mjs",
"watch": "node ./node_modules/nodemon/bin/nodemon.js ./start.mjs",
"start": "npm ./start.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zevgoula/Project.git"
},
"engines": {
"node": "16.x"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"assert": "^2.0.0",
"bcrypt": "^5.1.0",
"better-sqlite3": "^9.6.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-flash": "^0.0.2",
"express-handlebars": "^7.0.7",
"express-session": "^1.17.3",
"nodemon": "^3.1.0",
"sqlite-async": "^1.2.0",
"urlencoded-parser": "^1.0.0"
},
"devDependencies": {
"mocha": "^10.0.0"
}
}