-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.35 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
{
"name": "smartlist",
"version": "2.5.1",
"main": "index.js",
"repository": "https://github.com/jeppard/einkaufsliste.git",
"author": "Jeppard, Sophie152, TK221",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=production ts-node --transpile-only index.ts",
"lint": "eslint .",
"dev": "nodemon index.ts",
"devDb": "cross-env START_WITH_EXAMPEL_DATA=yes DROP_ALL_TABLES=yes nodemon index.ts"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"mariadb": "^2.5.3",
"tar": "^6.1.9",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.12",
"@types/express-session": "^1.17.3",
"@types/node": "^15.12.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"nodemon": "^2.0.7",
"semistandard": "^16.0.0"
}
}