-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.11 KB
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
{
"name": "white-label-login",
"version": "0.0.1",
"description": "Login page that depending on the user preference it will provide the proper app. ie: while label",
"main": "index.js",
"scripts": {
"lint": "eslint . --fix",
"precommit": "npm run lint",
"start": "nodemon ./bin/www.js",
"test": "mocha test/unit/**/*.js test/integration/**/*.js",
"test:e2e": "mocha test/e2e/**/*.js --timeout 10000"
},
"author": "mkl",
"license": "MIT",
"dependencies": {
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"express-bunyan-logger": "^1.3.3",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chromedriver": "^74.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-react": "^7.13.0",
"git-cz": "^3.0.1",
"mocha": "^6.1.4",
"nock": "^10.0.6",
"nodemon": "^1.19.1",
"selenium-webdriver": "^4.0.0-alpha.1",
"supertest": "^4.0.2"
}
}