-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.61 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
{
"name": "learnflow-api",
"version": "1.0.0",
"description": "API ExpressJS pour le projet Learn Flow",
"main": "index.js",
"scripts": {
"start": "nodemon --exec ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ousmane-diallo-sio/learnflow-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ousmane-diallo-sio/learnflow-api/issues"
},
"homepage": "https://github.com/ousmane-diallo-sio/learnflow-api#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/jwt-express": "^1.1.3",
"@types/multer": "^1.4.7",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"eslint": "^8.40.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"joi": "^17.9.2",
"jwt-express": "^1.1.0",
"mongoose": "^7.1.0",
"multer": "^1.4.4"
}
}