-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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": "projection-backend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"chromedriver": "^74.0.0",
"cors": "^2.8.4",
"express": "^4.17.1",
"fast-csv": "^2.5.0",
"geckodriver": "^1.16.2",
"jsonwebtoken": "^8.5.1",
"knex": "^0.16.5",
"mocha": "^6.1.4",
"pg": "^7.11.0",
"selenium-webdriver": "^3.6.0",
"istanbul": "0.4.5"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/cucumber": "^4.0.5",
"@types/node": "^8.0.29",
"chai": "^4.2.0",
"codecov": "^3.5.0",
"cucumber": "^5.1.0",
"grunt-cucumber-coverage": "^1.0.0-rc.6",
"grunt": "1.0.1",
"grunt-contrib-clean": "1.0.0",
"grunt-eslint": "19.0.0",
"load-grunt-tasks": "3.5.2",
"jest": "^24.8.0",
"mochawesome": "^3.1.2",
"nodemon": "^1.19.1"
},
"scripts": {
"start": "nodemon server.js",
"test": "cucumber-js",
"jest": "jest",
"grunt": "grunt test",
"cucumber": "./node_modules/.bin/cucumber-js features/**/*.feature --logLevel=error --require 'step-definitions/**/*.js' --require 'hooks/**/*.js' --require-module js-node/register --format-options '{\"snippetInterface\": \"async-await\"}' --format json:reports/cucumber-report.json --format summary"
},
"test": "jest",
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/test"
]
}
}