forked from Azure-Samples/js-e2e-express-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "js-e2e-express-server",
"version": "1.0.0",
"description": "JavaScript server written with Express.js",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"build": "npm run lint",
"start": "node src/index.js",
"start:dev": "npm run lint && nodemon --exec node src/index.js --unhandled-rejections=warn",
"test": "jest --detectOpenHandles --coverage",
"lint": "eslint src/**/*.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/azure-samples/js-e2e-express-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/azure-samples/js-e2e-express-server/issues"
},
"homepage": "https://github.com/azure-samples/js-e2e-express-server#readme",
"devDependencies": {
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"supertest": "^6.1.1"
},
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"serve-favicon": "^2.5.0"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}