forked from microservices-demo/front-end
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.7 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
{
"name": "microservices-demo-front-end",
"version": "0.0.1",
"description": "Front end for microservices demo application.",
"main": "server.js",
"scripts": {
"test": "istanbul cover node_modules/.bin/_mocha -- test/*_test.js test/api/*_test.js",
"coverage": "istanbul cover --report cobertura node_modules/.bin/_mocha -- test/*_test.js test/api/*_test.js && mocha test/*_test.js test/api/*_test.js --reporter mocha-junit-reporter --reporter-options mochaFile=./results/test-results.xml",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/weaveworks/microservices-demo"
},
"contributors": [
"Ian Crosby <[email protected]>",
"Carlos León <[email protected]> (carlosleon.info)"
],
"license": "MIT",
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.15.1",
"cookie-parser": "^1.4.3",
"express": "^4.13.4",
"express-session": "^1.13.0",
"finalhandler": "^0.4.1",
"request": "^2.72.0",
"serve-static": "^1.10.2",
"prom-client": "^6.3.0",
"morgan": "^1.7.0",
"connect-redis": "^3.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"cypress": "^5.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-recommended": "^4.1.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-cypress": "^2.11.1",
"faker": "^5.1.0",
"istanbul": "^0.4.4",
"mocha": "^3.0.0",
"mocha-junit-reporter": "^1.12.1",
"mongodb": "^2.2.5",
"prettier": "2.1.1",
"sinon": "^1.17.5",
"typescript": "^4.0.2"
}
}