-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "node-course-test",
"version": "1.0.0",
"description": "The test for the Node.js course designed by Fiqus coop",
"main": "app.js",
"scripts": {
"start": "node ./app.js",
"test": "NODE_ENV=test ./node_modules/mocha/bin/_mocha --timeout 1000 --exit"
},
"keywords": [
"exam",
"node",
"express",
"mocha",
"chai"
],
"author": "Cambá",
"license": "GPL-3.0",
"dependencies": {
"body-parser": "^1.18.3",
"ejs": "^2.6.1",
"express": "^4.16.4",
"mongoose": "^5.3.15",
"morgan": "^1.9.1",
"request": "^2.88.0"
},
"devDependencies": {
"ajv": "^6.6.1",
"ajv-keywords": "^3.2.0",
"chai": "^4.2.0",
"eslint": "^5.9.0",
"eslint-config-btrz": "^1.1.2",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^3.1.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nock": "^9.6.1",
"sinon": "^6.3.5",
"supertest": "^3.3.0"
}
}