-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.55 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
56
57
58
59
60
61
{
"name": "htw-webdev-todo",
"version": "0.0.0",
"description": "",
"repository": "jneidel/htw-webdev-todo",
"license": "MIT",
"author": {
"name": "Jonathan Neidel",
"email": "git@jneidel.com",
"url": "http://jneidel.com"
},
"main": "app.js",
"engines": {
"node": ">=14"
},
"scripts": {
"start": "nodemon app.js --ignore test/ --trace-sync-io",
"test": "jest",
"watch": "concurrently \"npm run start\" \"npm run watch-test\" --names \"💻,🚀\" --prefix name",
"watch-test": "jest --watch",
"watch-unit": "jest --watch test/unit/*.test.ts",
"start-prod": "node -r dotenv/config app.js dotenv_config_path=.env",
"lint": "eslint --fix --ext .js ."
},
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.1",
"helmet": "^4.4.1",
"iconv-lite": "^0.6.2",
"mariadb": "^2.5.3",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pug": "^3.0.2",
"sequelize": "^6.6.2",
"superagent": "^6.1.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"concurrently": "^5.3.0",
"eslint": "^7.23.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^24.0.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/?*.test.js",
"test/**/?.test.js"
]
}
}