-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.48 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
{
"devDependencies": {
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.24.2",
"mocha": "^9.2.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"supertest": "^6.2.2"
},
"scripts": {
"build": "scripts/build.sh",
"lint:fix": "(npm run lint:fix:eslint || true) && npm run lint:fix:prettier",
"lint:fix:eslint": "eslint --fix .",
"lint:fix:prettier": "prettier --write .",
"production": "node index.js",
"start": "nodemon -r dotenv/config index.js",
"test": "npm run test:lint && npm run test:server",
"test:lint": "npm run test:lint:prettier && npm run test:lint:eslint",
"test:lint:eslint": "eslint .",
"test:lint:prettier": "prettier --check .",
"test:server": "mocha"
},
"name": "isawthesign",
"description": "Simple API for the open sign controller",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/allhandsactive/isawthesign.git"
},
"author": "James Kruth",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/allhandsactive/isawthesign/issues"
},
"homepage": "https://github.com/allhandsactive/isawthesign#readme",
"dependencies": {
"express": "^4.17.3",
"express-basic-auth": "^1.2.1",
"express-winston": "^4.2.0",
"helmet": "^5.0.2",
"nocache": "^3.0.1",
"winston": "^3.6.0"
}
}