This repository was archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
68 lines (68 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "realworld",
"version": "1.0.0",
"description": "Fork of realworld app to show full e2e code coverage",
"private": true,
"main": "index.js",
"engines": {
"node": "12.16.2"
},
"scripts": {
"postinstall": "run-s ci:client ci:server",
"ci:client": "cd client && npm ci",
"ci:server": "cd server && npm ci",
"build": "cd client && npm run build",
"start": "concurrently npm:start:client npm:start:server",
"start:coverage": "concurrently npm:start:client npm:start:server:coverage",
"start:client": "cd client && npm start",
"start:server": "cd server && npm start",
"start:server:coverage": "cd server && npm run start:coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:test": "cypress run -s 'cypress/integration/**/*-spec.js'",
"test": "start-test start 4100 cypress:test",
"test:coverage": "start-test start:coverage 4100 cypress:test",
"dev": "start-test start 4100 cypress:open",
"dev:coverage": "start-test start:coverage 4100 cypress:open",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"warn-only": "stop-only --warn --folder cypress/integration",
"stop-only": "stop-only --folder cypress/integration"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/realworld.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bahmutov/realworld/issues"
},
"homepage": "https://github.com/bahmutov/realworld#readme",
"devDependencies": {
"@bahmutov/cy-api": "1.6.2",
"@cypress/code-coverage": "3.9.12",
"babel-plugin-istanbul": "5.2.0",
"common-tags": "1.8.0",
"concurrently": "4.1.2",
"coveralls": "3.0.11",
"cypress": "9.4.1",
"husky": "3.1.0",
"istanbul-lib-coverage": "3.2.0",
"knex": "0.20.13",
"npm-run-all": "4.1.5",
"nyc": "14.1.1",
"sqlite3": "4.1.1",
"start-server-and-test": "1.10.11",
"stop-only": "3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run warn-only",
"pre-push": "npm run stop-only"
}
},
"nyc": {
"exclude": "server/lib/migrations"
}
}