-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.42 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
{
"name": "aladino",
"version": "1.0.0",
"description": "",
"main": "aladino.js",
"scripts": {
"start": "ts-node src/aladino.ts",
"ts-node": "ts-node",
"test": "cucumber-js test/features/**/*.feature --require test/worlds/DomainWorld.ts --require test/steps/**/*.ts --require-module ts-node/register --publish-quiet --exit",
"test-with-persistence": "cucumber-js test/features/**/*.feature --require test/worlds/PersistentWorld.ts --require test/steps/**/*.ts --require-module ts-node/register --publish-quiet --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emanuele-falzone/aladino.git"
},
"author": "Emanuele Falzone",
"license": "MIT",
"bugs": {
"url": "https://github.com/emanuele-falzone/aladino/issues"
},
"homepage": "https://github.com/emanuele-falzone/aladino#readme",
"devDependencies": {
"@cucumber/cucumber": "^7.3.1",
"@cucumber/pretty-formatter": "^1.0.0-alpha.1",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.10.3",
"@types/pg": "^8.6.1",
"axios": "^0.24.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.3"
},
"dependencies": {
"cors": "^2.8.5",
"debug": "^4.3.3",
"express": "^4.17.1",
"express-session": "^1.17.2",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1",
"pug": "^3.0.2"
}
}