-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.77 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@serenity-js/playground",
"description": "",
"version": "0.0.0-development",
"bin": {
"playground": "bin/playground"
},
"author": {
"name": "Jan Molak",
"email": "[email protected]",
"url": "https://janmolak.com"
},
"funding": {
"url": "https://github.com/sponsors/serenity-js"
},
"homepage": "https://serenity-js.org",
"license": "Apache-2.0",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"keywords": [
"bdd",
"tdd",
"test",
"testing",
"serenity",
"screenplay",
"playground",
"learning"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/serenity-js/playground.git"
},
"bugs": {
"url": "https://github.com/serenity-js/playground/issues"
},
"engines": {
"node": ">= 10",
"npm": ">= 6"
},
"scripts": {
"clean": "rimraf lib target",
"ng": "ng",
"start": "npm run start:api & npm run start:webapp",
"start:webapp": "ng serve",
"start:api": "ts-node src/start.ts",
"build": "npm run build:webapp && npm run build:server",
"build:webapp": "ng build",
"build:server": "tsc --project tsconfig.json",
"test": "ng test",
"lint": "ng lint",
"pree2e": "serenity-bdd update --ignoreSSL",
"e2e": "failsafe clean build e2e:execute e2e:report",
"e2e:execute": "ng e2e",
"e2e:report": "serenity-bdd run",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"lowdb": "^1.0.0",
"nanoid": "^3.1.12",
"yargs": "^16.0.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1002.0",
"@angular/animations": "^10.1.0",
"@angular/cli": "^10.1.0",
"@angular/common": "^10.1.0",
"@angular/compiler": "^10.1.0",
"@angular/compiler-cli": "^10.1.0",
"@angular/core": "^10.1.0",
"@angular/forms": "^10.1.0",
"@angular/platform-browser": "^10.1.0",
"@angular/platform-browser-dynamic": "^10.1.0",
"@angular/router": "^10.1.0",
"@serenity-js/assertions": "^2.19.10",
"@serenity-js/console-reporter": "^2.19.10",
"@serenity-js/core": "^2.19.10",
"@serenity-js/local-server": "^2.19.10",
"@serenity-js/mocha": "^2.19.10",
"@serenity-js/protractor": "^2.19.10",
"@serenity-js/rest": "^2.19.10",
"@serenity-js/serenity-bdd": "^2.19.10",
"@types/chai": "^4.2.12",
"@types/express": "^4.17.8",
"@types/nanoid": "^2.1.0",
"@types/node": "^14.14.6",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"chromedriver": "^87.0.1",
"codelyzer": "^6.0.0",
"commitizen": "^4.2.1",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"npm-failsafe": "^0.4.1",
"is-ci": "^2.0.0",
"mocha": "^8.1.3",
"karma": "^6.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "^2.0.1",
"protractor": "^7.0.0",
"rimraf": "^3.0.2",
"rxjs": "^6.6.2",
"semantic-release": "^17.1.1",
"tiny-types": "^1.14.1",
"todomvc-app-css": "^2.3.0",
"todomvc-common": "^1.0.5",
"ts-node": "^9.0.0",
"tslib": "^2.0.1",
"tslint": "^6.1.3",
"typescript": "^4.0.2",
"zone.js": "^0.11.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}