-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.4 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
{
"name": "oblog",
"version": "1.0.0",
"description": "Les étudiants React vont bientôt coder un petit appli de blog qui consomme une API simpliste (vous me direz, c'est pas très important, ils se concentrent sur le front). Du coup, on pourrait peut-être reprendre le concept mais l'étendre grâce aux super-pouvoirs d'Express et Postgres, non ? C'est beau de collaborer entre spés, vous trouvez pas ?",
"type": "module",
"scripts": {
"db:deploy": "sqitch deploy; node ./data/import-data.js",
"db:reset": "sqitch revert -y; npm run db:deploy",
"start": "NODE_ENV=production node .",
"dev": "npx nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/O-clock-Galactica/e06-data-express-oblog-MaximeRaynal.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/O-clock-Spe-Data/express-oblog/issues"
},
"homepage": "https://github.com/O-clock-Spe-Data/express-oblog",
"dependencies": {
"cors": "^2.8.5",
"debug": "^4.3.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-jsdoc-swagger": "^1.6.7",
"joi": "^17.5.0",
"pg": "^8.7.1",
"pug": "^3.0.2",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0"
}
}