-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.67 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
{
"name": "kisapankki-backend",
"version": "1.0.0",
"description": "Repository for scout competition task application's backend",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "NODE_ENV=test jest ---verbose --runInBand",
"test-win": "cross-env NODE_ENV=test jest ---verbose --runInBand",
"lint": "eslint .",
"watch": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/partio-scout/kisapankki-backend.git"
},
"author": "Partioprojekti",
"license": "ISC",
"bugs": {
"url": "https://github.com/partio-scout/kisapankki-backend/issues"
},
"homepage": "https://github.com/partio-scout/kisapankki-backend#readme",
"dependencies": {
"@azure/storage-blob": "^12.1.1",
"archiver": "^3.1.1",
"arg": "^4.1.3",
"azure-storage": "^2.10.3",
"bcrypt": "^3.0.8",
"chalk": "^4.0.0",
"chokidar": "^3.3.1",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"get-port": "^5.1.1",
"get-stdin": "^7.0.0",
"gray-matter": "^4.0.2",
"highlight.js": "^9.18.1",
"iconv-lite": "^0.5.1",
"into-stream": "^5.1.1",
"jest": "^25.1.0",
"jsonwebtoken": "^8.5.1",
"listr": "^0.14.3",
"marked": "^0.8.2",
"mongoose": "^5.8.10",
"mongoose-unique-validator": "^2.0.3",
"multer": "^1.4.2",
"nodemailer": "^6.4.5",
"nodemailer-sendgrid-transport": "^0.2.0",
"puppeteer": "^2.1.1",
"serve-handler": "^6.1.2",
"supertest": "^4.0.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"nodemon": "^2.0.2"
}
}