forked from larskaare/sMailandStuff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.66 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
{
"name": "smailandstuff",
"version": "0.2.0",
"private": true,
"author": "Lars Kaare Skjorestad",
"license": "MIT",
"scripts": {
"start": "node ./src/www.js | ./node_modules/.bin/bunyan ",
"nodemon": "./node_modules/.bin/nodemon ./src/www.js | ./node_modules/.bin/bunyan",
"lint": "node ./node_modules/.bin/eslint . --ext .js",
"test": "NODE_ENV=test CLIENTID=aClient CLIENTSECRET=aSecret TENANTID=aTenant PORT=3000 ./node_modules/.bin/mocha",
"snyk": "./node_modules/.bin/snyk test",
"snykdev": "./node_modules/.bin/snyk test --dev || true",
"snykdocker": "./node_modules/.bin/snyk test --docker node:lts-alpine --file=Dockerfile"
},
"dependencies": {
"acorn": "^7.1.1",
"body-parser": "^1.19.0",
"bunyan": "^1.8.13",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"espree": "^6.2.1",
"express": "~4.17.1",
"express-bunyan-logger": "^1.3.3",
"express-rate-limit": "^5.1.3",
"express-session": "^1.17.0",
"helmet": "^3.21.3",
"http-errors": "~1.7.3",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.20",
"method-override": "^3.0.0",
"moment": "^2.24.0",
"morgan": "~1.10.0",
"passport": "^0.4.1",
"passport-azure-ad": "^4.2.1",
"pug": "^2.0.4",
"qs": "^6.9.2",
"randomstring": "^1.1.5",
"request-promise": "^4.2.4",
"snyk": "^*",
"then-request": "^6.0.2",
"underscore": "^1.9.1",
"url": "^0.11.0"
},
"devDependencies": {
"chai": "^4.2.0",
"dot-prop": "^5.1.1",
"elliptic": "^6.5.2",
"eslint": "^6.3.0",
"kind-of": "^6.0.3",
"mocha": "^7.0.1",
"nodemon": "^2.0.4",
"sinon": "^8.1.1",
"supertest": "^4.0.2"
}
}