-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
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": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"supertest": "^6.3.4"
},
"dependencies": {
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"serve-favicon": "^2.5.0"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}