-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
58 lines (58 loc) · 1.94 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
{
"name": "purify",
"version": "1.1.3",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:test": "COMPOSE_DOCKER_CLI_BUILD=1 docker-compose -f docker-compose.tests.yml up -d --build",
"start:ci": "docker-compose -f docker-compose.ci.yml up -d",
"start:coverage": "concurrently npm:start:db npm:start:client npm:start:server:coverage 1>/dev/null 2>&1 &",
"start:client": "cd web && npm i && npm test",
"start:db": "docker run -d -p 27017:27017 --name test_mongo mongo",
"start:server:coverage": "cd api && npm i && npm run start:coverage",
"cy:verify": "cypress verify",
"cy:version": "cypress version",
"cy:open": "cypress open",
"db:migrate": "wait-on http://localhost:8080/#/welcome && cd api && migrate-mongo up",
"cy:coverage": "wait-on http://localhost:8080/#/welcome && cypress run -C cypress.cover.json",
"cy:run": "wait-on http://localhost:8080/#/welcome && cypress run --browser chrome --record --key fb3c6806-340f-4621-b19a-235876278336"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faloker/purify.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/faloker/purify/issues"
},
"homepage": "https://github.com/faloker/purify#readme",
"devDependencies": {
"@bahmutov/add-typescript-to-cypress": "^2.1.2",
"@cypress/code-coverage": "^3.8.1",
"@types/jest": "^26.0.20",
"@types/mocha": "^8.2.0",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.10.2",
"babel-plugin-istanbul": "^6.0.0",
"cypress": "^6.3.0",
"cypress-file-upload": "^4.1.1",
"istanbul-lib-coverage": "^3.0.0",
"nyc": "^15.1.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1"
},
"dependencies": {
"concurrently": "^5.3.0",
"mongoose": "^5.11.13",
"wait-on": "^5.2.0"
},
"nyc": {
"extension": [
".js",
".vue",
".ts"
]
}
}