-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"name": "myment_back",
"version": "1.0.0",
"description": "This repo contain the back API for the web application myment.",
"main": "index.js",
"scripts": {
"start": "sh init-database.sh && node app.js",
"dev": "nodemon app.js"
},
"keywords": [],
"author": "FuckingBosses",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/fullstacktf/myment-back.git"
},
"bugs": {
"url": "https://github.com/fullstacktf/myment-back/issues"
},
"homepage": "https://github.com/fullstacktf/myment-back#readme",
"dependencies": {
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"mariadb": "^2.1.0",
"mongoose": "^5.6.7",
"sequelize": "^5.10.3"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.15",
"@types/mongoose": "^5.5.11",
"@types/node": "^12.6.8",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-jest": "^22.7.2",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
}
}